前段时间写了个tabs 选项卡切换效果,今天抽空在原有的基础上进行了扩展,加入了自动轮播,这样就变成了类似图片轮播的效果了。 html 代码: 复制代码 代码如下: js-tabs <BR>a{color:#a0b3d6;} <BR>.tabs{border:1px solid #a0b3d6;margin:100px;width:300px;} <BR>.tabs-nav a{background:#eaf0fd;line-height:30px;padding:0 20px;display:inline-block;border-right:1px solid #a0b3d6;border-bottom:1px solid #a0b3d6;float:left;} <BR>.tabs-nav .select1,.tabs-nav .select2,.tabs-nav .select3,.tabs-nav .select4{background:white;border-bottom:1px solid white;_position:relative;} <BR>.tabs-content{padding:20px;border-top:1px solid #a0b3d6;margin-top:-1px;} <BR> 首页 技术 生活 作品 首页首页首页首页首页首页首页首页首页首页 技术技术技术技术技术技术技术技术技术技术 生活生活生活生活生活生活生活生活生活生活 作品作品作品作品作品作品作品作品作品作品 11111 22222 33333 11111111111111111111111111111111111 222222222222222222222222222222222222 333333333333333333333333333333333333333 <BR>window.onload = function(){ <BR>tabs('tabs','click',true,1000); <BR>tabs('tabs2','mouseover'); <BR>} <BR> tabs.js 代码: 复制代码 代码如下: function tabs(id,trigger,autoplay,time){ var tabsWrap = document.getElementById(id); var tabsBtn = tabsWrap.getElementsByTagName('h2')[0].getElementsByTagName('a'); var tabsContent = getClass('tabs-content',tabsWrap); var timer = null; var current = 0; show(0); for(var i = 0,len = tabsBtn.length; i tabsBtn[i].index = i; if(trigger == 'click'){ tabsBtn[i].onclick = function(){ show(this.index); } }else if(trigger == 'mouseover'){ tabsBtn[i].onmouseover = function(){ show(this.index); } } } if(autoplay){ autoPlay(); tabsWrap.onmouseover = function(){ clearInterval(timer); } tabsWrap.onmouseout = function(){ autoPlay(); } } function autoPlay(){ timer = setInterval(function(){ show(current); current++; if(current >= tabsBtn.length){ current = 0; } },time); } function show(n){ current = n; for(var i = 0,len = tabsBtn.length; i tabsBtn[i].className = ''; tabsContent[i].style.display = 'none'; } tabsBtn[current].className = 'select' + (current + 1); tabsContent[current].style.display = 'block'; } function getClass(classname,obj){ var results = []; var elems = obj.getElementsByTagName('*'); for(var i = 0; i if(elems[i].className.indexOf(classname) != -1){ results[results.length] = elems[i]; } } return results; } } PS:这是本人闲着无聊,通过自己所学的 javascript 知识,随意写的一些效果。