jQuery-简单选项卡

 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4     <title>选项卡</title>
 5     <meta http-equiv="content-type" content="text/html" charset="utf-8" accesskey=""/>
 6     <script type="text/javascript" src="jquery-1.8.3.js"></script>
 7     <style type="text/css">
 8         body,div,ul,li{
 9             margin: 0;
10             padding: 0;
11         }
12         ul{
13             width: 405px;
14             margin: auto;
15             overflow: hidden;
16         }
17         li{
18             list-style: none;
19             float: left;
20             width: 100px;
21             height: 30px;
22             line-height: 30px;
23             text-align: center;
24             border: 1px solid #848484;
25             border-right: none;
26             overflow: hidden;
27             cursor: pointer;
28         }
29         li:first-child{
30             border-bottom: 1px solid #fff;
31         }
32         li:last-child{
33             border-right: 1px solid #848484;
34         }
35         #wrap{
36             width: 403px;
37             margin: 70px auto;
38             text-align: center;
39             position: relative;
40          }
41         #wrap div{
42             position: absolute;
43             text-align: center;
44             width: 100%;
45             height: 200px;
46             line-height: 100px;
47             display: none;
48             border: 1px solid #848484;
49             border-top: none;
50          }
51         #wrap div:first-of-type{
52             display: block;
53         }
54     </style>
55 </head>
56 <body>
57 <div id="wrap">
58 <ul>
59     <li name="one"> 许嵩</li>
60     <li name="two">周杰伦</li>
61     <li name="three">林俊杰</li>
62     <li name="four">陈奕迅</li>
63  </ul>
64 <div name="one" dianji="one">庐州月</div>
65 <div name="two" dianji="two">东风破</div>
66 <div name="three" dianji="three">江南 曹操</div>
67 <div name="four" dianji="four">十年 浮夸</div>
68 </div>
69 <script type="text/javascript">
70     $("li").on("click",function(){
71         $("#wrap div[name!="+$(this).attr("name")+"]").fadeOut(1000);
72         $("#wrap div[name="+$(this).attr("name")+"]").fadeIn(1000);
73         $("#wrap li[name!="+$(this).attr("name")+"]").css({"border-bottom-color":"#848484"});
74         $("#wrap li[name="+$(this).attr("name")+"]").css({"border-bottom-color":"#fff"});
75     })
76 </script>
77 </body>
78 </html>

jQuery-简单选项卡

时间: 2024-10-12 19:40:51

jQuery-简单选项卡的相关文章

Jquery 简单的Tab选项卡特效

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-

jQuery Tab选项卡切换代码

jQuery Tab选项卡切换代码是一款简单的jquery tab标签 选项卡切换代码样式,可以修改tab选项卡相关样式. 下载地址:http://www.huiyi8.com/sc/10863.html(转载请注明此处)

jQuery简单的轮播特效

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-

jquery 简单弹出层

预定义html代码:没有 所有代码通过js生成和移除. 预定义css /* 基本弹出层样式 */ .my-popup-overlay { width:100%; height:auto; /* width height is defined by javascript */ position: absolute; top:0; left: 0; z-index: 1000; background-color: #000; opacity: 0.2; *filter:alpha(opacity=2

jquery 简单弹出层(转)

预定义html代码:没有 所有代码通过js生成和移除. 预定义css /* 基本弹出层样式 */ .my-popup-overlay { width:100%; height:auto; /* width height is defined by javascript */ position: absolute; top:0; left: 0; z-index: 1000; background-color: #000; opacity: 0.2; *filter:alpha(opacity=2

【技术】同页面可多次使用的jQuery tab选项卡代码

        <!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>同页面可多次使用的jQuery tab选项卡代码</title><style type="text/css"> *{ margin:0; pad

基于Jquery 简单实用的弹出提示框

引言: 原生的 alert 样子看起来很粗暴,网上也有一大堆相关的插件,但是基本上都是大而全,仅仅几句话可以实现的东西,可能要引入好几十k的文件,所以话了点时间自己写了个弹出效果,放到项目上去发现效果还不错,这里贴出来,做个备忘,有需要的同学可以拿去,也可以作为一个参考. 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.d

jQuery简单表单验证效果

jQuery简单表单验证效果:只要有表单的地方,基本都会有表单验证,下面就结合实例简单介绍一下最简单的表单验证,如何防止填写的表单内容为空.代码实例如下: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.51texiao.cn/" /> <tit

jQuery简单的Ajax调用示例

jQuery简单的Ajax调用示例 jQuery确实方便,下面做个简单的Ajax调用: 建立一个简单的html文件: <!DOCTYPE HTML> <html> <head> <script type="text/javascript" src="Public/js/jquery-easyui-1.3.1/jquery-1.8.2.min.js"></script> <script type=&qu

jquery简单的tab切换特效插件jquery-tab demo代码下载

原文:jquery简单的tab切换特效插件jquery-tab demo代码下载 源代码下载地址:http://www.zuidaima.com/share/1550463496178688.htm <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htm