MarkerCluster.css 1.0 KB

1234567891011121314151617181920
  1. /*!
  2. * Copyright 2012 David Leaver
  3. * Leaflet.markercluster.(https://github.com/Leaflet/Leaflet.markercluster/)
  4. * license: MIT
  5. * version: v1.0.3
  6. */
  7. .leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
  8. -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
  9. -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
  10. -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
  11. transition: transform 0.3s ease-out, opacity 0.3s ease-in;
  12. }
  13. .leaflet-cluster-spider-leg {
  14. /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
  15. -webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
  16. -moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
  17. -o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
  18. transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
  19. }