js+css实现tab菜单切换效果的方法_javascript技巧
程序员文章站
2022-04-23 19:01:04
...
本文实例讲述了js+css实现tab菜单切换效果的方法。分享给大家供大家参考。具体实现方法如下:
js实现tab菜单动态切换效果
index.css如下:
复制代码 代码如下:
* {
margin: 0px;
padding: 0px;
}
body {
width: 600px;
margin: 0 auto;
background-color: silver;
}
#contanier {
background-color: yellow;
width: 600px;height: 400px;
}
#tabNavi {
width: 600px;height: 30px;
background-color: #00bfff;
text-decoration: none;
list-style-type: none;
}
#tabNavi li {
float: left;
margin-right: 7px;
background-color: #008b8b;
color: white;
cursor: pointer;
width: 60px;
height: 28px;
line-height: 30px;
text-align: center;
}
#content {
width: 600px;height: 370px;
background-color: white;
}
margin: 0px;
padding: 0px;
}
body {
width: 600px;
margin: 0 auto;
background-color: silver;
}
#contanier {
background-color: yellow;
width: 600px;height: 400px;
}
#tabNavi {
width: 600px;height: 30px;
background-color: #00bfff;
text-decoration: none;
list-style-type: none;
}
#tabNavi li {
float: left;
margin-right: 7px;
background-color: #008b8b;
color: white;
cursor: pointer;
width: 60px;
height: 28px;
line-height: 30px;
text-align: center;
}
#content {
width: 600px;height: 370px;
background-color: white;
}
index.html如下:
复制代码 代码如下:
希望本文所述对大家的javascript程序设计有所帮助。
推荐阅读
-
原生javascript实现右键菜单效果的方法
-
javascript实现跳转菜单的具体方法_javascript技巧
-
js实现类似新浪微博首页内容渐显效果的方法_javascript技巧
-
js(JavaScript)实现TAB标签切换效果的简单实例_javascript技巧
-
js实现类似jquery里animate动画效果的方法_javascript技巧
-
javascript实现tab切换的四种方法
-
javascript实现dom动态创建省市纵向列表菜单的方法_javascript技巧
-
javascript实现跳转菜单的具体方法_javascript技巧
-
JS+CSS实现实用的单击输入框弹出选择框的方法_javascript技巧
-
javascript实现在网页任意处点左键弹出隐藏菜单的方法_javascript技巧