博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Leafletjs】6.Control.Loading推展-在地图上边框添加加载动态条
阅读量:5251 次
发布时间:2019-06-14

本文共 1394 字,大约阅读时间需要 4 分钟。

在已有的Control.Loading控件基础上结合CSS3 animation属性实现

.nz-loading .nz-loader{
display: block; -webkit-animation: shift-rightwards 3s ease-in-out infinite; -moz-animation: shift-rightwards 3s ease-in-out infinite; -ms-animation: shift-rightwards 3s ease-in-out infinite; -o-animation: shift-rightwards 3s ease-in-out infinite; animation: shift-rightwards 3s ease-in-out infinite; -webkit-animation-delay: .2s; -moz-animation-delay: .2s; -o-animation-delay: .2s; animation-delay: .2s;}.nz-loader{
position: absolute; display: none; top: 0; left: 0; right: 0; height: 2px; z-index: 10100; background-color: #79C1C0 !important; -webkit-transform: translateX(100%); -moz-transform: translateX(100%); -o-transform: translateX(100%); transform: translateX(100%);}

 

L.Control.Loading.include({        onAdd: function (map) {            this._container = L.DomUtil.create('div', 'nz-loader', map._controlContainer);            map.on('baselayerchange', this._layerAdd, this);            this._addMapListeners(map);            this._map = map;        },        _showIndicator: function () {            L.DomUtil.addClass(this._map._container, 'nz-loading');        },        _hideIndicator: function () {            L.DomUtil.removeClass(this._map._container, 'nz-loading');        }    });

 

转载于:https://www.cnblogs.com/shitao/p/4905810.html

你可能感兴趣的文章
VopSdk一个高逼格微信公众号开发SDK(源码下载)
查看>>
关于cocos2d-x中CCScrollView添加CCMenu一系列问题的解决方案
查看>>
mysql中进行删除操作时用到not in 导致删除不成功
查看>>
Java虚拟机详解03----常用JVM配置参数
查看>>
视频采集,存成avi
查看>>
SpringCloud重试机制配置
查看>>
[转载]项目经理能力训练-如何讲解PPT?
查看>>
phpdesigner 7 注册码(key)(转)
查看>>
【BZOJ3674】可持久化并查集加强版
查看>>
exBSGS板子
查看>>
wp7 使用缓存 改善性能
查看>>
CS294-112 深度强化学习 秋季学期(伯克利)NO.1 Introduction NO.2 Supervised learning and imitation...
查看>>
[CV] OpenCV图像处理教程- 23:像素重映射pixel remap
查看>>
竞争性排斥原理(高斯假说)
查看>>
Intellig IDEA 搭建spring boot 热部署
查看>>
MySQL 对于大表(千万级),要怎么优化呢?
查看>>
sqlmap基础入门超详细教程
查看>>
js产生随机数的几个方法
查看>>
PHP 正则表达式
查看>>
hdu 1106 排序
查看>>