时间:2021-05-25
先给大家看下效果展示图
以下为详细代码:
复制代码 代码如下:
function LGY_picSwitch(option){
this.oWrap = this.getId(option.wrapID); //最外层元素
this.olistWrap = this.getNodeByClassname(this.oWrap,'gy_picSwitch_listWrap')[0];
this.oUl = this.olistWrap.getElementsByTagName('ul')[0];
this.oBtnPrev = this.getNodeByClassname(this.oWrap,'gy_picSwitch_prev')[0];
this.oBtnNext = this.getNodeByClassname(this.oWrap,'gy_picSwitch_next')[0];
this.nLen = this.oUl.getElementsByTagName('li').length; //图片总数
this.nScollCount = option.scrollCount; //每次滚动的数量
this.nScollLen = Math.ceil(this.nLen/option.scrollCount); // 切换判断的最大值
this.nSwitchWidth = 0; //每次切换移动的距离,在代码里面动态获取值
this.nIndex = 0; //切换图片的当前索引
this.timer = null; //切换图片的引值
this.int();
}
LGY_picSwitch.prototype = {
getId:function(id){
return document.getElementById(id);
},
getNodeByClassname:function(parent,classname){
var classElements = new Array();
var els = parent.getElementsByTagName('*');
var elsLen = els.length;
var pattern = new RegExp("(^|\\s)"+classname+"(\\s|$)");
for (i = 0, j = 0; i < elsLen; i++) {
if ( pattern.test(els[i].className) ) {
classElements[j] = els[i];
j++;
}
}
return classElements;
},
getCss:function(node,value)
{
return node.currentStyle?node.currentStyle[value]:getComputedStyle(node,null)[value];
},
setCss:function(node,val){
for(var v in val){
node.style.cssText += ';'+ v +':'+val[v];
}
},
moveFn:function(node,value,targetValue,callback){
var _that = this;
clearInterval(this.timer);
this.timer = setInterval(function()
{
var val = parseFloat(_that.getCss(node,value));
var speed = ( targetValue- val )/8;
speed = speed>0?Math.ceil(speed):Math.floor(speed);
if(speed ==0)
{
clearInterval(_that.timer);
callback&&callback();
}
else
{
node.style[value] = ( val + speed ) +'px';
}
},20);
},
picChange:function(){
this.moveFn(this.oUl,'marginLeft',-this.nIndex*this.nSwitchWidth);
},
cancelBubble:function(e){
e.stopPropagation?e.stopPropagation():e.cancelBubble = true;
},
btnIsShow:function(){
this.setCss(this.oBtnNext,{'display':'block'});
this.setCss(this.oBtnPrev,{'display':'block'});
if( this.nIndex == 0 ) this.setCss(this.oBtnPrev,{'display':'none'});
if( this.nIndex ==(this.nScollLen-1) ) this.setCss(this.oBtnNext,{'display':'none'});
},
btnPrev:function(){
var _that = this;
this.oBtnPrev.onclick = function(e){
var e = e || window.event;
_that.cancelBubble(e);
if(_that.nIndex != 0 ) {
_that.nIndex--;
_that.picChange();
_that.btnIsShow();
}
}
},
btnNext:function(){
var _that = this;
this.oBtnNext.onclick = function(e){
var e = e || window.event;
_that.cancelBubble(e);
if(_that.nIndex != (_that.nScollLen-1) ) {
_that.nIndex++;
_that.picChange();
_that.btnIsShow();
}
}
},
int:function(){
//动态获取移动的宽度
var oLi = this.oUl.getElementsByTagName('li')[0],
oLi_w = oLi.offsetWidth + parseInt(this.getCss(oLi,'marginLeft')) + parseInt(this.getCss(oLi,'marginRight'));
this.nSwitchWidth = oLi_w*this.nScollCount;
//按钮显示初始化
this.btnIsShow();
//左右切换
this.btnPrev();
this.btnNext();
}
}
HTML代码:
复制代码 代码如下:
/*
* HTML结构必需是以下:外层ID名,自己传入 如下面的:id="gy_picSwitch02" ,ID名,自己随便给
但,里面的结构必需一样,包括类名classname
<div id="gy_picSwitch02">
<span class="gy_picSwitch_prev"></span>
<span class="gy_picSwitch_next"></span>
<div class="gy_picSwitch_listWrap">
<ul>
<li><img src="images/pic01.jpg" alt=""></li>
<li><img src="images/pic02.jpg" alt=""></li>
<li><img src="images/pic03.jpg" alt=""></li>
<li><img src="images/pic04.jpg" alt=""></li>
<li><img src="images/pic05.jpg" alt=""></li>
<li><img src="images/pic06.jpg" alt=""></li>
<li><img src="images/pic07.jpg" alt=""></li>
<li><img src="images/pic08.jpg" alt=""></li>
</ul>
</div>
</div>
参数:'wrapID':'xxxx',最外层的ID名
'scrollCount':5,滚动的数量
复制代码 代码如下:
*
*/
//实例化
new LGY_picSwitch({'wrapID':'gy_picSwitch','scrollCount':5});
是不是很方便的功能呢,使用也很简单,这里推荐给小伙伴,希望对大家能有所帮助
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文介绍了JavaScript实现图片轮播组件,废话不多说了直接看下面:效果:自动循环播放图片,下方有按钮可以切换到对应图片。添加一个动画来实现图片切换。鼠标停
本文实例为大家分享了js实现上传图片到服务器的具体代码,供大家参考,具体内容如下HTML//多张图片上传multiple//原生提交按钮javascript//
原生js焦点轮播图主要注意这几点:1、前后按钮实现切换,同时注意辅助图2、中间的button随着前后按钮对应切换,同时按button也能跳转到相应的index3
本文实例为大家分享了jQuery实现图片切换效果的具体代码,供大家参考,具体内容如下动画:点击左右按钮实现图片切换jQuery方法:animate(),stop
本文实例讲述了JavaScript实现点击按钮切换网页背景色的方法。分享给大家供大家参考,具体如下:这里演示JavaScript用按钮随意变换背景颜色,每点击一