javascript

位置:IT落伍者 >> javascript >> 浏览文章

jquery 滑动选项卡实例效果代码


发布日期:2020年10月15日
 
jquery 滑动选项卡实例效果代码
多国外网站抓下来的jquery 滑动选项卡代码我们一步步告诉你如何制作出如此漂亮的tab选项卡的切换代码

<! 多国外<html xmlns="" dir="ltr">
<head>
<meta httpequiv="contenttype" content="text/html; charset=gb" />
<title>jquery 滑动选项卡实例效果代码</title>
<link rel="stylesheet" href="css教程/generalcss" type="text/css" media="screen" />
<![if ie ]>
<link rel="stylesheet" href="css/iecss" type="text/css" media="screen" />
<![endif]>
</head>
<body>
<a id="logo" title="go to yensdesigncom!" href=" target=_blank >mysql教程 forum database from scratch</li>
<ul>
</div>
<div class="content links">
<h>you may visit</h>
<ul>
<li><img src="css/images/bulletgif" alt="" /> <a href=" target=_blank >网页特效" src=";></script>
<script type="text/javascript" src="tabsjs"></script>
</body>
</html>

没有什么可以评论在这里让我们跳进css的一部分

添加与css样式
在这里有一个必须说的小动作我们要创造 各部门共同的类称为内容和每个部分单独的类因此我们将有这些分歧

新闻内容
内容教程
内容链接
我们重用的类称为"内容"并加入了第二类(新闻教程或链接)以相同的内容的部门改变每节一些小细节这样做可以保存在您的布局的css代码很多

@charset "utf";
/******* general reset *******/
html body div span applet object iframe h h h h h h p blockquote pre a abbr acronym address big cite code del dfn em
font img ins kbd q s samp small strike strong sub sup tt var dl dt dd ol ul li fieldset form label legend table caption tbody
tfoot thead tr th td {
border:pt none;
fontfamily:inherit;
fontsize: %;
fontstyle:inherit;
fontweight:inherit;
margin:pt;
padding:pt;
verticalalign:baseline;
}
body{
background: #fff;
lineheight:px;
fontsize: px;
fontfamily: arial verdana helvetica sansserif;
margin:pt;
cursor:default;
overflow: hidden;
}
htmlbody{
height:%;
textalign: center;
}
clear{
clear: both;
height: ;
visibility: hidden;
display: block;
}
a{
textdecoration: none;
}
/******* general reset *******/
/******* logo *******/
#logo{
margintop: em;
display: block;
}
/******* /logo *******/
/******* menu *******/
#container{
margin: em auto;
width: px;
}
#container ul{
liststyle: none;
liststyleposition: outside;
}
#container ulmenu li{
float: left;
marginright: px;
marginbottom: px;
}
#container ulmenu li{
fontweight: ;
display: block;
padding: px px px px;
background: #efefef;
marginbottom: px;
border: px solid #dccc;
borderwidth: px px px px;
position: relative;
color: #;
cursor: pointer;
}
#container ulmenu liactive{
background: #fff;
top: px;
borderbottom: ;
color: #fef;
}
/******* /menu *******/
/******* content *******/
content{
margin: pt auto;
background: #efefef;
background: #fff;
border: px solid #dccc;
textalign: left;
padding: px;
paddingbottom: px;
fontsize: px;
}
content h{
lineheight: em;
verticalalign: middle;
height: px;
padding: px px px px;
fontsize: px;
}
/******* /content *******/
/******* news *******/
contentnews h{
background: transparent url(images/newsjpg) norepeat scroll left top;
}
contentnews{
display: block;
}
/******* /news *******/
/******* tutorials *******/
contenttutorials h{
background: transparent url(images/tutsjpg) norepeat scroll left top;
}
contenttutorials{
display: none;
}
/******* /tutorials *******/
/******* links *******/
contentlinks h{
background: transparent url(images/linksjpg) norepeat scroll left top;
}
contentlinks{
display: none;
}
contentlinks a{
color: #fef;
}
/******* /links *******/

正如你所看到的我们要显示和隐藏的新闻节默认的休息然后我们将用jquery可以显示/隐藏使用事件

添加jquery的魔力我们标签菜单
首先需要在eventsjs代码所示

/***************************/
//@author: adrian "yens" mato gondelle &amp;amp;amp; ivan guardado castro
//@website:
//@email:
//@license: feel free to use it but keep this credits please!
/***************************/

$(document)ready(function(){
$("menu > li")click(function(e){
switch(etargetid){
case "news":
//change status &amp;amp;amp; style menu
$("#news")addclass("active");
$("#tutorials")removeclass("active");
$("#links")removeclass("active");
//display selected division hide others
$("divnews")fadein();
$("divtutorials")css("display" "none");
$("divlinks")css("display" "none");
break;
case "tutorials":
//change status &amp;amp;amp; style menu
$("#news")removeclass("active");
$("#tutorials")addclass("active");
$("#links")removeclass("active");
//display selected division hide others
$("divtutorials")fadein();
$("divnews")css("display" "none");
$("divlinks")css("display" "none");
break;
case "links":
//change status &amp;amp;amp; style menu
$("#news")removeclass("active");
$("#tutorials")removeclass("active");
$("#links")addclass("active");
//display selected division hide others
$("divlinks")fadein();
$("divnews")css("display" "none");
$("divtutorials")css("display" "none");
break;
}
//alert(etargetid);
return false;
});
});

               

上一篇:jQuery 读取写入删除cookie具体实例

下一篇:jquery动态获取图片高度与宽度