摘要:
打开App,因为数据请求多,网络慢等原因,会先显示一个骨架。 推荐:https://github.com/tigerAndBull/TABAnimated 阅读全文
摘要:
配置热更新: 破解: 2019.2/3版本破解文件: https://github.com/nwgdegitHub/IDEA- 解压之后新建一个空项目,把文件拖进去,然后重启IDEA即可 阅读全文
摘要:
https://blog.csdn.net/u014527697/article/details/81087139 一个冒号是伪类,两个冒号是伪元素 伪类可以独立于文档的元素来分配样式,且可以分配给任何元素,逻辑上和功能上类类似,但是其是预定义的、不存在于文档树中且表达方式也不同,所以叫伪类。伪元素 阅读全文
摘要:
在angular中使用ng-repeat时数组中有重复元素,要用item in items track by $index,不然会报错 <div class="" ng-init="names=[1,2,3,4,5,5]"> <p>循环对象:</p> <ul> <li ng-repeat="x in 阅读全文
摘要:
.part5-bg .swiper2 .swiper-pagination2{ bottom: 0.4rem; } /*未选中的小圆点样式*/ .part5-bg .swiper2 .swiper-pagination2 .swiper-pagination-bullet { width: 5px; 阅读全文
摘要:
如果想知道当前遍历的下标,也就是数据源中的第几个,可以用$index <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title></title> <style media="screen"> .co 阅读全文
摘要:
1. Swiper 的上一页,下一页按钮,不是必需包含在container 中的 2. 定义上一页,下一页按钮的样式,CSS略.... 3. 在初始化Swiper中,定义上一页,下一页按钮 阅读全文
摘要:
效果: <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title></title> <script type="text/javascript" src="./js/jquery-1.12.4.mi 阅读全文
摘要:
参考来自 https://www.cnblogs.com/zhoulin1234/p/9587955.html 方法1. 逻辑在后面的中括号里面 ng-class="{true : 'checker disabled',false : 'checker' }[条件表达式,成立就用true对应的类,不 阅读全文