DDR爱好者之家 Design By 杰米
本文实例为大家分享了JavaScript轮播图组件代码,供大家参考,具体内容如下
//轮播图组件 function Rolling(o) { this.index = ++o.index || 1; //当前滚动的位置,当index大于可轮播的次数listLength或者等于0,为不可滚动状态 this.num = o.num || 1; //默认滚动一个列表 this.obj = o.obj || null; //要轮播的对象ul this.perObj = o.perObj || null; //向上翻页的按钮对象 this.nextObj = o.nextObj || null; //向下翻页的按钮对象 this.focusPoint = o.focusPoint || null; //焦点对象,默认为null。意思不开启焦点对象,如要开启可传入焦点对象可自动开启 this.focusClass = o.focusClass || 'mien-active'; //当前焦点位置类名 this.replaceBtn = o.replaceBtn || false;//是否在轮播到第一页或最后一页时替换翻页按钮图片。默认值为true,并替换按钮图片为re+图片名。如:per.png替换成re-per.ping console.log(o.replaceBtn) this.listLength = Math.ceil(o.obj.find('li').length / this.num); //可轮播的次数 this.listObj = o.obj.children('li'); this.listWidth =this.listObj.width() + parseInt(this.listObj.css('margin-left')) + parseInt(this.listObj.css('margin-right')); //列表宽度 this.init(); //初始化 }; Rolling.prototype.init = function() { var thisObj = this; this.initLeft(); this.replaceFun(); if(this.focusPoint !== null) { this.createFocusPoint(); } this.perObj.unbind('click').on('click', function() { thisObj.rollPrev(); }); this.nextObj.unbind('click').on('click', function() { thisObj.rollNext(); }); } //创建焦点,并给当前位置的焦点添加类mien-active Rolling.prototype.createFocusPoint = function() { var str = '', thisObj = this; for(var i = 0; i < this.listLength; i++) { if(i == this.index - 1) { str += '<li class="' + this.focusClass + '"></li>'; } else { str += '<li></li>'; } } this.focusPoint.append(str); this.focusPoint.children().click(function() { var oldIndex = $('.' + thisObj.focusClass).index() + 1; //之前的焦点位置 var index = $(this).index() + 1; //当前点击的焦点 var sum = index - oldIndex; var perObject = thisObj.perObj.find('img'); var nextObject = thisObj.nextObj.find('img'); if (index == 1 && !thisObj.replaceBtn){ perObject.attr('src',perObject.attr('data-src')); nextObject.attr('src',nextObject.attr('data-src')); }else if (index == thisObj.listLength && !thisObj.replaceBtn){ perObject.attr('src',perObject.attr('re-src')); nextObject.attr('src',nextObject.attr('re-src')); }else if (!thisObj.replaceBtn){ perObject.attr('src',perObject.attr('re-src')); nextObject.attr('src',nextObject.attr('data-src')); } thisObj.index += sum; if(sum > 0) { thisObj.obj.animate({ marginLeft: '-=' + Math.abs(sum) * thisObj.num * thisObj.listWidth + 'px' }); } if(sum < 0) { thisObj.obj.animate({ marginLeft: '+=' + Math.abs(sum) * thisObj.num * thisObj.listWidth + 'px' }); } $(this).addClass(thisObj.focusClass).siblings().removeClass(thisObj.focusClass); }); } Rolling.prototype.initLeft = function() { if(this.index == 1) { return; } this.obj.css('margin-left', -(this.index - 1) * this.listWidth); //初始化全屏图片显示的位置 } Rolling.prototype.rollPrev = function() { --this.index; //当点击到第一页就return if (this.index <= 1 && !this.replaceBtn){ this.perObj.find('img').attr('src',this.perObj.find('img').attr('data-src')); } if(!this.thisIndex()) { ++this.index; return; } if (!this.replaceBtn){ this.nextObj.find('img').attr('src',this.nextObj.find('img').attr('data-src')); } this.obj.animate({ marginLeft: '+=' + this.num * this.listWidth + 'px' }); if(this.focusPoint !== null) { $('.' + this.focusClass).removeClass(this.focusClass).prev().addClass(this.focusClass); } } Rolling.prototype.rollNext = function() { ++this.index; if (this.index == this.listLength && !this.replaceBtn){ this.nextObj.find('img').attr('src',this.nextObj.find('img').attr('re-src')); } //当点击到最后一页就return if(!this.thisIndex()) { --this.index; return; } if (!this.replaceBtn){ this.perObj.find('img').attr('src',this.perObj.find('img').attr('re-src')); } this.obj.animate({ marginLeft: '-=' + this.num * this.listWidth + 'px' }); if(this.focusPoint !== null) { $('.' + this.focusClass).removeClass(this.focusClass).next().addClass(this.focusClass); } } Rolling.prototype.replaceFun = function(){ var perObject = this.perObj.find('img'), nextObject = this.nextObj.find('img'); var perSrc = perObject.attr('src'), nextSrc = nextObject.attr('src'); perObject.attr({'data-src':perSrc,'re-src':this.splitSrc(perSrc)}); nextObject.attr({'data-src':nextSrc,'re-src':this.splitSrc(nextSrc)}); } Rolling.prototype.splitSrc = function(str){ var list = str.split('/'); var data = list[list.length-1]; var sub = data.substr(0,data.indexOf('.')); return str.replace(sub,'re-' + sub); } Rolling.prototype.thisIndex = function() { if(this.index > this.listLength | this.index <= 0) { return false; } return true; } function createRolling(o) { return new Rolling(o); }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
DDR爱好者之家 Design By 杰米
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
DDR爱好者之家 Design By 杰米
暂无评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。
更新日志
2024年11月28日
2024年11月28日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]