发布时间:2019-05-15 00:22:04
这是一款使用原生js实现的轮播插件,支持左右箭头切换,圆点按钮切换,自动轮播,兼容IE8,封装插件,代码注释全面,代码易修改,简单的语法。使用时只需要引入css及js相关文件,并在html写一个容器,配置构造实例的参数启用
html:
1 2 | <!-- 容器 --> < div id = "container" ></ div > |
css:
1 2 3 4 5 | /*容器尺寸*/ #container{ width : 960px ; height : 430px ; } |
1 2 | < link rel = "stylesheet" href = "css/reset.css" > <!-- 重置样式 --> < link rel = "stylesheet" href = "css/bannerSlide.css" > <!-- 插件样式 --> |
javascript:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <!-- 封装的插件js --> var bannerSlide = new BannerSlide({ container: '#container' , /*容器 必须*/ imagesSrc: [ 'images/t1.png' , 'images/t2.png' , 'images/t3.png' , 'images/t4.png' ], /*图片路径 必须*/ speed: 3000, /*轮播切换速度 可选*/ switchEffect: { /*切换效果配置 可选*/ slide: true , /*轮播*/ arrow: true , /*箭头*/ radius: true /*圆点*/ } }); |
特别申明:
本站所有资源都是由网友投稿发布,或转载各大下载站,请自行检测软件的完整性!
本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!
如有侵权请联系我们删除下架,联系方式:lei1294551502@163.com