設(shè)置一個(gè)標(biāo)識數(shù)字置為0,寫一個(gè)每過幾秒標(biāo)識+1,執(zhí)行切換效果的函數(shù),然后執(zhí)行。
當(dāng)標(biāo)識超過當(dāng)前選項(xiàng)卡長度讓標(biāo)識置為0。
在鼠標(biāo)移到選項(xiàng)卡的時(shí)候關(guān)閉定時(shí)器,鼠標(biāo)移走的時(shí)候打開定時(shí)器。
<!DOCTYPE html>
<html>
<head>
<meta charset="gb2312" />
<title>無標(biāo)題文檔</title>
<style>
body,ul,li{
margin:0;
padding:0;
font:12px/1.5 arial;
}
ul,li{
list-style:none;
}
.wrap{
width:500px;
margin:20px auto;
}
.hide{
display:none;
}
#tab_t{
height:25px;
border-bottom:1px solid #ccc;
}
#tab_t li{
float:left;
width:80px;
height:24px;
line-height:24px;
margin:0 4px;
text-align:center;
border:1px solid #ccc;
border-bottom:none;
background:#f5f5f5;
cursor:pointer
}
#tab_t .act{
position:relative;
height:25px;
margin-bottom:-1px;
background:#fff;
}
#tab_c{
border:1px solid #ccc;
border-top:none;
padding:20px;
}
</style>
<script>
window.onload = function(){
tab("tab_t","li","tab_c","div","onmouseover")
function tab(tab_t,tab_t_tag,tab_c,tag_c_tag,evt){
var tab_t = document.getElementById(tab_t);
var tab_t_li = tab_t.getElementsByTagName(tab_t_tag);
var tab_c = document.getElementById(tab_c);
var tab_c_li = tab_c.getElementsByTagName(tag_c_tag);
var len = tab_t_li.length;
var i=0;
var timer = null;
var num=0;
for(i=0; i<len; i++){
tab_t_li[i].index = i;
tab_t_li[i][evt] = function(){
clearInterval(timer);
num = this.index;
tab_change()
}
tab_t_li[i].onmouseout = function(){
autoplay();
}
}
function tab_change(){
for(i=0; i<len; i++){
tab_t_li[i].className = '';
tab_c_li[i].className = 'hide';
}
tab_t_li[num].className = 'act';
tab_c_li[num].className = '';
}
function autoplay(){
timer = setInterval(function(){
num++;
if(num>=len) num=0;
tab_change();
},1000);
}
autoplay();
}
}
</script>
</head>
<body>
<div class="wrap">
<ul id="tab_t">
<li class="act">選擇1</li>
<li>選擇2</li>
<li>選擇3</li>
<li>選擇4</li>
</ul>
<div id="tab_c">
<div>內(nèi)容1</div>
<div class="hide">內(nèi)容2</div>
<div class="hide">內(nèi)容3</div>
<div class="hide">內(nèi)容4</div>
</div>
</div>
</body>
</html>
1. 獲取元素;
2. for循環(huán)按鈕元素添加onclick(點(diǎn)擊) 或者 onmousemove(移入)事件;
3. 點(diǎn)擊當(dāng)前按鈕時(shí)會(huì)以高亮狀態(tài)顯示,通過for循環(huán)歷遍把所有的按鈕樣式設(shè)置為空在把所有div的display設(shè)置為none。
4. 點(diǎn)擊當(dāng)前按鈕添加樣式,把當(dāng)前div顯示出來,display設(shè)置為block。
二、html代碼:
<div id="div1">
<input type="button" class="active" value="1"/>
<input type="button" value="2"/>
<input type="button" value="3"/>
<input type="button" value="4"/>
<div class="div2" style="display:block;">11</div>
<div class="div2">22</div>
<div class="div2">33</div>
<div class="div2">44</div>
</div>
三、css部分:
.active
{
background:#9CC;
}
.div2
{
width:300px;
height:200px;
border:1px #666666 solid;
display:none;
}
四、js代碼:
<script>
window.onload=function(){
var odiv=document.getElementById('div1');//獲取div
var btn=odiv.getElementsByTagName('input');//獲取div下的input
var div2=odiv.getElementsByTagName('div') ;//獲取div下的div
for(i=0;i<btn.length;i++)//循環(huán)每個(gè)按鈕
{
btn[i].index=i
//btn[i]是指定button的第i個(gè)按鈕;為該按鈕添加一個(gè)index屬性,并將index的值設(shè)置為i
btn[i].onclick=function()//按鈕的第i個(gè)點(diǎn)擊事件
{
for(i=0;i<btn.length;i++)//循環(huán)去掉button的樣式,把div隱藏
{
btn[i].className='' //清空按鈕的樣式
div2[i].style.display='none'//隱藏div
}
this.className='active'//自身添加active
div2[this.index].style.display='block'//this.index是當(dāng)前div
}
}
}
</script>
更多建議: