<small id='mS6ar'></small><noframes id='mS6ar'>

    1. <legend id='mS6ar'><style id='mS6ar'><dir id='mS6ar'><q id='mS6ar'></q></dir></style></legend>

      <i id='mS6ar'><tr id='mS6ar'><dt id='mS6ar'><q id='mS6ar'><span id='mS6ar'><b id='mS6ar'><form id='mS6ar'><ins id='mS6ar'></ins><ul id='mS6ar'></ul><sub id='mS6ar'></sub></form><legend id='mS6ar'></legend><bdo id='mS6ar'><pre id='mS6ar'><center id='mS6ar'></center></pre></bdo></b><th id='mS6ar'></th></span></q></dt></tr></i><div id='mS6ar'><tfoot id='mS6ar'></tfoot><dl id='mS6ar'><fieldset id='mS6ar'></fieldset></dl></div>

      1. <tfoot id='mS6ar'></tfoot>
          <bdo id='mS6ar'></bdo><ul id='mS6ar'></ul>
      2. 使用 CSS3 动画的脉动传单标记

        时间:2023-08-08
            <bdo id='8dd8U'></bdo><ul id='8dd8U'></ul>
              <tfoot id='8dd8U'></tfoot>
                <tbody id='8dd8U'></tbody>

              1. <legend id='8dd8U'><style id='8dd8U'><dir id='8dd8U'><q id='8dd8U'></q></dir></style></legend>

              2. <small id='8dd8U'></small><noframes id='8dd8U'>

              3. <i id='8dd8U'><tr id='8dd8U'><dt id='8dd8U'><q id='8dd8U'><span id='8dd8U'><b id='8dd8U'><form id='8dd8U'><ins id='8dd8U'></ins><ul id='8dd8U'></ul><sub id='8dd8U'></sub></form><legend id='8dd8U'></legend><bdo id='8dd8U'><pre id='8dd8U'><center id='8dd8U'></center></pre></bdo></b><th id='8dd8U'></th></span></q></dt></tr></i><div id='8dd8U'><tfoot id='8dd8U'></tfoot><dl id='8dd8U'><fieldset id='8dd8U'></fieldset></dl></div>
                  本文介绍了使用 CSS3 动画的脉动传单标记的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我想在

                  顺便说一句,我在 Windows 7 和 Yosemite 上使用 Chrome 44.x.

                  我在这里创建了一个最小的示例:

                  我还是不明白,为什么我的第一种方法不起作用.

                  I want to create a custom pulsating map marker icon on a Leaflet map. For learning purposes I don't want to use third party plugins.

                  I am using the following CSS code for creating the 'pulsating'-animation:

                  .gps_ring {
                      border: 3px solid #999;
                      -webkit-border-radius: 30px;
                      height: 18px;
                      width: 18px;    
                      -webkit-animation: pulsate 1s ease-out;
                      -webkit-animation-iteration-count: infinite;     
                  }   
                  @-webkit-keyframes pulsate {
                      0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
                      50% {opacity: 1.0;}
                      100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
                  }
                  

                  I am using Leaflet's DivIcon in order to change the visualization of a marker (referencing the CSS class above):

                  // Define an icon called cssIcon
                  var cssIcon = L.divIcon({
                      // Specify a class name we can refer to in CSS.
                      className: 'gps_ring'
                  });
                  
                  // Create markers and set their icons to cssIcon
                  L.marker([50.5, 30.5], {icon: cssIcon}).addTo(map);
                  

                  This approach doesn't work at the moment. The animated marker icon always shows up on the top left corner of the map. It seems that the transformation (scale) breaks the current marker location:

                  BTW I am using Chrome 44.x on Windows 7 and Yosemite.

                  I have created a minimal example here:

                  http://jsfiddle.net/christianjunk/q69qx45c/1/

                  What is going wrong? Why does the animation breaks the marker's map position?

                  解决方案

                  After investigating for some more time I found a way to solve the problem:

                  I changed the CSS code slighlty:

                  .css-icon {
                  
                  }
                  
                  .gps_ring { 
                      border: 3px solid #999;
                       -webkit-border-radius: 30px;
                       height: 18px;
                       width: 18px;       
                      -webkit-animation: pulsate 1s ease-out;
                      -webkit-animation-iteration-count: infinite; 
                      /*opacity: 0.0*/
                  }
                  
                  @-webkit-keyframes pulsate {
                          0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
                          50% {opacity: 1.0;}
                          100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
                  }
                  

                  And I changed the instantiation of my DivIcon class:

                  // Define an icon called cssIcon
                  var cssIcon = L.divIcon({
                    // Specify a class name we can refer to in CSS.
                    className: 'css-icon',
                    html: '<div class="gps_ring"></div>'
                    // Set marker width and height
                    ,iconSize: [22,22]
                    // ,iconAnchor: [11,11]
                  });
                  

                  The following did the trick: I am now using the inner html to run the CSS animation. This will preserve the marker's location. Also note the iconSize attribute, which has the total size of the icon after the transformation ( 21 px =~ 18px x 1.2). Setting it this way centers the animated circle at the coordinate:

                  Working example: http://jsfiddle.net/christianjunk/waturuoz/

                  I still couldn't figure out, why my first approach wasn't working.

                  这篇关于使用 CSS3 动画的脉动传单标记的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何将 html 标题(工具提示)添加到 leaflet.js 多边形 下一篇:在容器 div 内定位地图框/传单地图

                  相关文章

                  最新文章

                    <bdo id='CGkty'></bdo><ul id='CGkty'></ul>
                1. <small id='CGkty'></small><noframes id='CGkty'>

                  <tfoot id='CGkty'></tfoot>
                  1. <legend id='CGkty'><style id='CGkty'><dir id='CGkty'><q id='CGkty'></q></dir></style></legend>

                  2. <i id='CGkty'><tr id='CGkty'><dt id='CGkty'><q id='CGkty'><span id='CGkty'><b id='CGkty'><form id='CGkty'><ins id='CGkty'></ins><ul id='CGkty'></ul><sub id='CGkty'></sub></form><legend id='CGkty'></legend><bdo id='CGkty'><pre id='CGkty'><center id='CGkty'></center></pre></bdo></b><th id='CGkty'></th></span></q></dt></tr></i><div id='CGkty'><tfoot id='CGkty'></tfoot><dl id='CGkty'><fieldset id='CGkty'></fieldset></dl></div>