当前位置: 编程技术>jquery
JQuery竖排选项卡示例代码
来源: 互联网 发布时间:2014-09-03
本文导语: 使用JQuery1.4.4开发的竖排页签选项卡(Tab)的代码示例,代码完整包在附件中。 1,HTML-Tab.html: 代码示例: JQuery竖排页签-www. 标签1 标签2 标签3 标签1下...
使用JQuery1.4.4开发的竖排页签选项卡(Tab)的代码示例,代码完整包在附件中。
1,HTML-Tab.html:
代码示例:
JQuery竖排页签-www.
- 标签1
- 标签2
- 标签3
标签1下内容
标签2下内容
标签3下内容
2,CSS-tab.css
代码示例:
@CHARSET "UTF-8";
/*清除浏览器默认样式*/
* {
margin:0px;
padding:0px;
}
.container_style{
width:500px;
height:170px;
display:block;
}
.li_area_style{
width:100px;
height:70px;
background-color:white;
float:left;
}
ul,li{
margin:0px;
padding:0px;
list-style:none;
}
li{
/*float:right;*/
background-color:pink;
margin-top:2px;
width:100px;
padding:5px;
border:1px solid white;
height:20px;
color:white;
}
.listli{
background-color:red;
border:1px solid red;
}
.tab_area_style{
width:400px;
height:100px;
background-color:white;
border-top:0px;
display:block;
float:left;
}
.tab_area_style *{
width:370px;
height:100px;
background-color:red;
border-top:0px;
color:white;
display:none;
margin-top:2px;
}
.content_area{
display:block;
}
/*清除浏览器默认样式*/
* {
margin:0px;
padding:0px;
}
.container_style{
width:500px;
height:170px;
display:block;
}
.li_area_style{
width:100px;
height:70px;
background-color:white;
float:left;
}
ul,li{
margin:0px;
padding:0px;
list-style:none;
}
li{
/*float:right;*/
background-color:pink;
margin-top:2px;
width:100px;
padding:5px;
border:1px solid white;
height:20px;
color:white;
}
.listli{
background-color:red;
border:1px solid red;
}
.tab_area_style{
width:400px;
height:100px;
background-color:white;
border-top:0px;
display:block;
float:left;
}
.tab_area_style *{
width:370px;
height:100px;
background-color:red;
border-top:0px;
color:white;
display:none;
margin-top:2px;
}
.content_area{
display:block;
}
3,JS-tab.js
代码示例:
var timeout;
$(document).ready(
function(){
$("li").each(function(index){
$(this).mouseover(function(){
timeout = setTimeout(function(){
$(".content_area").removeClass("content_area");
$(".listli").removeClass("listli");
$("#tab_area *").eq(index).addClass("content_area");
$("li").eq(index).addClass("listli");
},320);
});
$(this).mouseout(function(){
clearTimeout(timeout);
});
});
}
);
$(document).ready(
function(){
$("li").each(function(index){
$(this).mouseover(function(){
timeout = setTimeout(function(){
$(".content_area").removeClass("content_area");
$(".listli").removeClass("listli");
$("#tab_area *").eq(index).addClass("content_area");
$("li").eq(index).addClass("listli");
},320);
});
$(this).mouseout(function(){
clearTimeout(timeout);
});
});
}
);
附,JQuery竖排选项卡的完整包。