久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    <bdo id='8dd8U'></bdo><ul id='8dd8U'></ul>
    <tfoot id='8dd8U'></tfoot>

    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 class="qwawimqqmiuu" id='8dd8U'><tfoot id='8dd8U'></tfoot><dl id='8dd8U'><fieldset id='8dd8U'></fieldset></dl></div>

        使用 CSS3 動畫的脈動傳單標記

        Pulsating Leaflet marker using CSS3 animations(使用 CSS3 動畫的脈動傳單標記)

          <tbody id='mS6ar'></tbody>

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

          • <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 class="qwawimqqmiuu" 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>
                • 本文介紹了使用 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模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Check if a polygon point is inside another in leaflet(檢查一個多邊形點是否在傳單中的另一個內部)
                  Changing leaflet markercluster icon color, inheriting the rest of the default CSS properties(更改傳單標記群集圖標顏色,繼承其余默認 CSS 屬性)
                  Trigger click on leaflet marker(觸發點擊傳單標記)
                  How can I change the default loading tile color in LeafletJS?(如何更改 LeafletJS 中的默認加載磁貼顏色?)
                  Adding Leaflet layer control to sidebar(將 Leaflet 圖層控件添加到側邊欄)
                  Leaflet - get latitude and longitude of a marker inside a pop-up(Leaflet - 在彈出窗口中獲取標記的緯度和經度)

                    <bdo id='CGkty'></bdo><ul id='CGkty'></ul>
                  • <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 class="qwawimqqmiuu" id='CGkty'><tfoot id='CGkty'></tfoot><dl id='CGkty'><fieldset id='CGkty'></fieldset></dl></div>

                              <tbody id='CGkty'></tbody>
                          • 主站蜘蛛池模板: 亚洲日本一区二区三区四区 | 伊人久久一区二区 | 成人免费观看视频 | 一区二区福利视频 | 日韩欧美在线播放 | 日韩三| 亚洲成人免费观看 | 国产1区在线 | 91av在线免费看 | 国产精品精品久久久 | 亚洲精品99| 国产69久久精品成人看动漫 | 黄片毛片在线观看 | 福利视频大全 | 亚洲一av| 九九精品在线 | 欧美日韩在线国产 | 日本中出视频 | 欧美激情精品久久久久久免费 | 欧美日韩国产综合在线 | 亚洲一区二区三区在线视频 | 日本三级网站在线 | 欧美一区2区三区4区公司二百 | 秋霞精品| 中文字幕第三页 | 亚洲综合视频 | 中文字幕成人av | 欧美在线观看一区 | 成人国产精品色哟哟 | 福利视频网 | 人人干人人舔 | 欧美精品久久 | 久久婷婷色 | 欧美福利视频一区 | 日本精品久久久久久久 | 三区四区在线观看 | 欧美1区| 91精品国产91久久久久久吃药 | 亚洲 一区 | 国产精品欧美一区二区 | 精品亚洲一区二区 |