本文主要是介绍JavaScript实现Tab选项卡特效代码总结,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
今天在慕课网上做了Tab选项卡的特效,刚开始写不太顺手,CSS写出来效果都不太理想,后来参考了别人的思路,自己修改了一下,终于有了最终效果。下面是正确的源码。
<!DOCTYPE html>
<html>
<head lang="en"><meta charset="UTF-8"><title>JavaScript特效-Tab选项卡</title><style type="text/css">/* CSS样式制作 */ *{margin:0;padding:0;font:normal 12px "微软雅黑";color:#000000;}ul{list-style-type: none;}a{text-decoration: none;}#tab-list{width: 275px;height:190px;margin: 20px auto;}#ul1{border-bottom: 2px solid #8B4513;height: 32px;}#ul1 li{display: inline-block;width: 60px;line-height: 30px;text-align: center;border: 1px solid #999;border-bottom: none;margin-left: 5px;}#ul1 li:hover{cursor: pointer;}#ul1 li.active{border-top:2px solid #8B4513;border-bottom:2px solid #FFFFFF;}#tab-list div{border: 1px solid #7396B8;border-top: none;}#tab-lis
这篇关于JavaScript实现Tab选项卡特效代码总结的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!