SuperSlide2实现图片滚动特效
更新时间:2014年06月20日 10:17:52 投稿:hebedich
SuperSlide2,实现图片滚动,感觉很强大,这里只是简单的演示其中一种类型,想看更多类型的话,可以去http://www.superslide2.com 查看,
这里贴一下自己演示的代码,期望对使用的朋友所有启发,我这里是结合了两个例子实现的
.focus-item ul li.item{ text-align: center; } .scroll-area .prev,.scroll-area .next{ position: absolute; bottom: 590px; width: 29px; height: 64px; opacity: 0.6; overflow: hidden; display: none; text-indent: -999px; border: medium none; background: url('/images/arrowLR.png') no-repeat scroll 0% 0% transparent; } .scroll-area .prev{ left: 0px; background-position: -50px 0px; } .scroll-area .next{ right: 0px; } .scroll-area .bdOn .prev,.scroll-area .bdOn .next{ display: block; } .scroll-area .focus-hd{ /*width: 832px;*/ /*left: 60px;*/ /*position: absolute;*/ /*height: 100px;*/ /*overflow: hidden;*/ left: 63px; position: absolute; } .focus-hd .sNext, .focus-hd .sPrev{ float: left; display: block; width: 14px; height: 47px; text-indent: -9999px; background: url('/images/sprites1008.png') no-repeat scroll 0px -3046px transparent; } .focus-hd .sNext{ background-position: 0px -2698px; } .focus-hd .show_bottom_nav { float: left; margin: 0px 6px; display: inline; width: 832px; overflow: hidden; } .focus-hd .show_bottom_nav ul li{ margin-left:15px; }
html演示代码:
<div id="" class="scroll-area"> <div class="focus-item"> <ul> <li data-bottom-thumb="/attachments/news_gallery/20140528162328_454.jpg" class="item" data-text-id="#thumbTxt1"> <img src="/attachments/news_gallery/20140528162328_454.jpg" alt="标题1" /> </li> <li data-bottom-thumb="/attachments/news_gallery/20140528162328_733.jpg" class="item" data-text-id="#thumbTxt2"> <img src="/attachments/news_gallery/20140528162328_733.jpg" alt="标题2" /> </li> </ul> <a class="prev" href="javascript:void(0)"></a> <a class="next" href="javascript:void(0)"></a> </div> <div class="focus-hd" style=""> <a class="sPrev prevStop" href="javascript:void(0)">←</a> <div class="show_bottom_nav"> <ul> <li data-bottom-thumb="/attachments/news_gallery/20140528162328_454.jpg" class="item" data-text-id="#thumbTxt1" style="float: left"> <img style="width: 150px;height: 100px" src="/attachments/news_gallery/20140528162328_454.jpg" alt="标题1" /> </li> <li data-bottom-thumb="/attachments/news_gallery/20140528162328_733.jpg" class="item" data-text-id="#thumbTxt2" style="float: left"> <img style="width: 150px;height: 100px" src="/attachments/news_gallery/20140528162328_733.jpg" alt="标题2" /> </li> </ul> </div> <a class="sNext" href="javascript:void(0)">→</a> </div> </div>
js脚本代码:
jQuery(".scroll-area").slide({titCell:'.focus-hd li',mainCell:'.focus-item ul',delayTime:0,trigger:0,autoPlay:true}); jQuery(".scroll-area .focus-item").hover(function(){jQuery(this).addClass("bdOn")},function(){jQuery(this).removeClass('bdOn')}); //小标签的导航 jQuery(".scroll-area .show_bottom_nav").slide({ mainCell:"ul",delayTime:100,vis:5,effect:"left",autoPage:true,prevCell:".sPrev",nextCell:".sNext" });
相关文章
用javascript实现的图片马赛克后显示并切换加文字功能
用javascript实现的图片马赛克后显示并切换加文字功能...2007-04-04javascript批量检查当图片不存在时则显示默认图片的代码
批量检查图片地址显示是不是有错误,在ie浏览器中是有当图片不存在时的onerror事件的,下面的代码即是非常不错的应用。2008-09-09javascript入门·图片对象(无刷新变换图片)\滚动图像
javascript入门·图片对象(无刷新变换图片)\滚动图像...2007-10-10javascript 放大镜效果js组件 qsoft.PopBigImage.v0.35 加入了chrome支持
一般页面的的图片为了布局考虑,显示大小都小于实际大小。 鼠标在图片上移动时,在旁边展示一个跟此图片显示大小一样的层。并讲鼠标附近区域对应的原始图片的区域按原始大小显示在这个层中。2009-04-04
最新评论