码迷,mamicode.com
首页 > 其他好文 > 详细

swiper 更改indicator-dots 属性 隐藏面板指示点

时间:2019-06-14 18:18:09      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:text   order   work   sof   interval   pat   sys   als   htm   

indicator-dots 是否显示面板指示点

所谓面板指示点如下图

技术图片

 

属性类型默认值必填说明最低版本
indicator-dots boolean false 是否显示面板指示点 1.0.0

 

如果隐藏的话 不能写 

<swiper indicator-dots="false" autoplay="true" interval="5000" duration="300">
</swiper>
因为 "false" 会被解析成字符串 而字符串是 true 值,所以直接写是不行的
 
解决如下
<swiper indicator-dots="{{false}}" autoplay="true" interval="5000" duration="300">
</swiper>
 
更改后的效果如下所示
 
技术图片

 

swiper 更改indicator-dots 属性 隐藏面板指示点

标签:text   order   work   sof   interval   pat   sys   als   htm   

原文地址:https://www.cnblogs.com/wangshuazi/p/11024602.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!