热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

jquery图片无缝切换

想要和园友分享一下学习jquery的经验、总结,更希望园友提出点建议。第一次写,有不好的地方请多多见谅!文笔有限,很多时候不

想要和园友分享一下学习jquery的经验、总结,更希望园友提出点建议。

第一次写,有不好的地方请多多见谅!

文笔有限,很多时候不知道怎么来描述,唉、硬伤啊!!那只好多做了,贴代码。。。

ok,废话少说,先上Demo,里面有5个Demo,从简单的jquery到重构为jquery小插件。

包含两个效果,手风琴效果和点击图片放大。

 上菜:Demo

无缝连接原理:

        1、定义显示区域,比如你有十张图片每次只显示5张。假如一张图片宽150px,那么可以用一个750px的div来包含一个1500px的ul/div。

        

css:.myul {width: 1500px;overflow: hidden;position: absolute;}.myul li {width: 150px;height: 150px;float: left;overflow: hidden;position: relative;}.slidediv {float: left;width: 750px;height: 150px;overflow: hidden;position: relative;}HTML:<div class&#61;"slidediv"><ul class&#61;"myul"><li><a class&#61;"img_b"><img alt&#61;"" width&#61;"150" height&#61;"150" src&#61;"images/1_s.jpg"/>a>li><li><a class&#61;"img_b" href&#61;"#"><img alt&#61;"" width&#61;"150" height&#61;"150" src&#61;"images/2_s.jpg"/>a>li>ul>
div>

View Code

       2、让整个ul移动一个li单位的距离&#xff0c;然后把移出显示区的li放到后面&#xff0c;再把ul的位置复原。不断地重复这种方式。

      

         

        

View Code

重构成小插件

        整个jquery 无缝切换原理很简单&#xff0c;可以通过重构把它变成小插件&#xff0c;这样就可以在多处使用了。

        我重构的不好&#xff0c;很多功能没有加上去&#xff0c;不过我觉得懂得原理了&#xff0c;变成小插件就看自己DIY了&#xff0c;整个过程核心不变功能一点点加上去就会慢慢完善了。

        看看我重构好的小插件&#xff0c;在Demo 里的js也有&#xff08;ImgSlide.js&#xff09;。具体效果看Demo2&#xff0c;我是偷懒&#xff0c;要在html定义li的高宽&#xff0c;这个完全可以在js插件里设置。

(function ($) {$.fn.ImgSlide &#61; function (options) {var defaults &#61; {showImages: 3,//默认显示图片数量speed: 400,//移动速度leftBtn: ".leftBtn", //默认左按钮rightBtn: ".rightBtn", //默认右按钮autoSlide: true,//默认自动移动为trueRightSlid: false, //默认向右移动为falseautoSpeed: 2000,//自动移动的时间moreSlide: "setOne" //多处图片移动&#xff0c;设置不同的class
};var options &#61; $.extend(defaults, options);var $this &#61; $(this),li &#61; $this.find(&#39;li&#39;),myFn;var li_width &#61; li.outerWidth(true);var liwidth &#61; li.width();$this.css({width: 5500,left:- li_width,overflow: "hidden",position: "absolute"});li.css({float: &#39;left&#39;,overflow: "hidden",position: "relative"});init();$(options.leftBtn).click(function () {MoveLeft();});//点击按钮向右移动;$(options.rightBtn).click(function () {MoveRight();});function init() {var showWidth &#61; li_width * options.showImages ;$this.wrap("

");$(&#39;.slidediv&#39;).css({height:liwidth,width: showWidth,overflow: "hidden",position: "relative",float: "left"});$this.animate({ left: 0 },0, function () {$(this).css({ left: -li_width }).find("li:last").prependTo(this);});if (options.autoSlide) {if (options.RightSlid) {myFn &#61; setInterval(MoveRight, options.autoSpeed);autoSlides(MoveRight);}else {myFn &#61; setInterval(MoveLeft, options.autoSpeed);autoSlides(MoveLeft);}}}function MoveLeft() {$this.stop().animate({ left: 0 }, options.speed, function () {$(this).css({ left: -li_width }).find("li:last").prependTo(this);});}function MoveRight() {$this.stop().animate({ left: -li_width*2 }, options.speed, function () {$(this).css({ left: -li_width }).find("li:first").appendTo(this);});}function autoSlides(fn) {$this.mouseover(function () {clearInterval(myFn);}).mouseout(function () {myFn &#61; setInterval(fn, options.autoSpeed);});$(options.leftBtn).mouseover(function () {clearInterval(myFn);}).mouseout(function () {myFn &#61; setInterval(fn, options.autoSpeed);});$(options.rightBtn).mouseover(function () {clearInterval(myFn);}).mouseout(function () {myFn &#61; setInterval(fn, options.autoSpeed);});}}
})(jQuery);
View Code

       在html引用&#xff0c;很方便吧&#xff01;&#xff01;&#xff01;

<script type&#61;"text/Javascript">$(function () {$(&#39;.myul&#39;).ImgSlide({showImages: 6});});script>

View Code

手风琴效果和图片放大效果在Demo里也有。可以看一下&#xff0c;欢迎和我讨论。

我是新手&#xff0c;有很多不妥的地方希望园友能提出&#xff0c;非常感谢。一起学习交流。。

手风琴效果

图片放大

 

 

版权所有&#xff0c;转载请注明出处&#xff0c;谢谢&#xff01;

 


转载于:https://www.cnblogs.com/WinKi/p/3369592.html


推荐阅读
author-avatar
蓝俊明伟伦淑舜
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有