废话不多说了,直接给大家贴js代码了,具体代码如下所示:
<script src="../js/jquery-1.8.3.min.js"></script> <script src="../js/jQuery.mobile-1.3.2.min.js"></script> ----------------------需要应用jquery .mobile自行百度 .num-zcon{ overflow: hidden; width:auto; height: 12.5em; } .num-container1 { height: 12.5em; background: url("icons/effect-img/13.png")no-repeat; background-size: cover; display:block; } .num-container2 { height: 12.5em; background: url("icons/effect-img/15.png")no-repeat; background-size: cover; display:none; } .num-container3 { height: 12.5em; background: url("icons/effect-img/177.png")no-repeat; background-size: cover; display:none; } .num-container4 { height: 12.5em; background: url("icons/effect-img/18.png")no-repeat; background-size: cover; display:none; } .num-container5 { height: 12.5em; background: url("icons/effect-img/19.png")no-repeat; background-size: cover; display:none; } .num-float{ height:1em; margin:0 auto; z-index: 3; text-align:center; margin-top: -1.35em; } .num-a{ background:#ffffff; height: 0.4375em; width: 0.4375em; border-radius: 50%; float: left; opacity: 0.5; } .num-kong{ height: 0.625em; width: 0.25em; float: left; } .num-kong-width{ width: auto; height: 0.9375em; } .num-kong-win{ height: 0.625em; width: 0.1em; float: left; } ---------- <div class="num-zcon"> <div class="num-container1" id="adv1"> </div> <div class="num-container2" id="adv2"> </div> <div class="num-container3" id="adv3"> </div> <div class="num-container4" id="adv4"> </div> <div class="num-container5" id="adv5"> </div> <div class="num-float ub ub-ac ub-pc"> <div class="num-a" id="ab1"> </div> <div class="num-kong"> </div> <div class="num-a" id="ab2"> </div> <div class="num-kong"> </div> <div class="num-a" id="ab3"> </div> <div class="num-kong"> </div> <div class="num-a" id="ab4"> </div> <div class="num-kong"> </div> <div class="num-a" id="ab5"> </div> </div> </div> <script> //横幅广告; var Nownumber = 1;//1图; var Maxnumber = 5;//总个数; function show() { for (var i = 1; i <= Maxnumber; i++) { if (Nownumber == i) { document.getElementById("adv" + Nownumber).style.display = 'block'; document.getElementById("ab" + Nownumber).style.opacity = 1; } else { document.getElementById("adv" + i).style.display = 'none'; document.getElementById("ab" + i).style.opacity = 0.5; document.getElementById("adv" + i).style.transition = "1s"; } } if (Nownumber == Maxnumber) { Nownumber = 1; } else { Nownumber++; } } theTime = setInterval('show()', 5000); </script> <script> $(document).on("pageinit","#pageone",function(){ $("#adv1").on("swiperight",function(){ $(this).hide(); Nownumber=5; $("#adv5").show(); }); $("#adv5").on("swiperight",function(){ $(this).hide(); Nownumber=4; $("#adv4").show(); }); $("#adv4").on("swiperight",function(){ $(this).hide(); Nownumber=3; $("#adv3").show(); }); $("#adv3").on("swiperight",function(){ $(this).hide(); Nownumber=2; $("#adv2").show(); }); $("#adv2").on("swiperight",function(){ $(this).hide(); Nownumber=1; $("#adv1").show(); }); $("#adv1").on("swipeleft",function(){ $(this).hide(); Nownumber=2; $("#adv2").show(); }); $("#adv2").on("swipeleft",function(){ $(this).hide(); Nownumber=3; $("#adv3").show(); }); $("#adv3").on("swipeleft",function(){ $(this).hide(); Nownumber=4; $("#adv4").show(); }); $("#adv4").on("swipeleft",function(){ $(this).hide(); Nownumber=5; $("#adv5").show(); }); $("#adv5").on("swipeleft",function(){ $(this).hide(); Nownumber=1; $("#adv1").show(); }); }); </script>
以上所述是小编给大家介绍的JS实现touch 点击滑动轮播实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对小牛知识库网站的支持!
本文向大家介绍js实现图片点击左右轮播,包括了js实现图片点击左右轮播的使用技巧和注意事项,需要的朋友参考一下 这个 相当于一个小框架,拿来就可以用: 1. 功能: 如上图显示: 点击左右两个button,可以实现图片向左右滚动,也可以设置在多少秒自己滚动。 2. 首先建立一个js文件,文件名为play.js(只要和HTML中的引入相同就可以了): 3. 建立一个HTML文件: 其中:样式自己
本文向大家介绍jQuery实现的3D版图片轮播示例【滑动轮播】,包括了jQuery实现的3D版图片轮播示例【滑动轮播】的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了jQuery实现的3D版图片轮播。分享给大家供大家参考,具体如下: 这个是用了3张图,来回滑动,类似一个圆圈(不晓得这个 怎么上动图啊!!!!) 图就是这么个图,但是他是可以滑动的(不好描述啊!!) 贴代码比较方便。。。 布局
本文向大家介绍JS轮播图实现简单代码,包括了JS轮播图实现简单代码的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了js轮播图实现代码,供大家参考,具体内容如下 思路: 1、首先要有个盛放图片的容器,设置为单幅图片的宽高,且overflow:hidden,这样保证每次可以只显示一个图片 2、Container内有个放图片的list进行position的定位 ,其中的图片采用float的
本文向大家介绍jQuery手动点击实现图片轮播特效,包括了jQuery手动点击实现图片轮播特效的使用技巧和注意事项,需要的朋友参考一下 本文写了一个轮播图练练手,先写了一个手动点击轮播的轮播图,随后我会慢慢接着深入写自动轮播图和鼠标悬浮图片停止移动轮播图等。 下面来看看最终做的手动点击轮播效果: 一、原理说明 (1)首先是轮播图的架构,我采用了一个最外边的大div包住两个小div,一个小div
本文向大家介绍JavaScript实现轮播图效果代码实例,包括了JavaScript实现轮播图效果代码实例的使用技巧和注意事项,需要的朋友参考一下 这篇文章主要介绍了JavaScript实现轮播图效果代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 HTML部分: CSS部分 JavaScript部分 以上就是本文的全部内容,希望对大家的学
本文向大家介绍在bootstrap中实现轮播图实例代码,包括了在bootstrap中实现轮播图实例代码的使用技巧和注意事项,需要的朋友参考一下 Bootstrap中轮播图插件叫作Carousel 以下容器就是整个轮播图组件的整体, 注意该盒子必须加上 class=”carousel slide” data-ride=”carousel” 表示当 前是一个轮播图 bootstrap.js会自动为当前