这次给大家带来js怎么在导航栏互相切换中英文,js在导航栏互相切换中英文的注意事项有哪些,下面就是实战案例,一起来看一下。
ul的高度为li的一半,ul{overflow:hidden}
li:hover{margin-top:-40px;}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlns="http://www.w3.org/1999/xhtml"> <head> <metahttp-equiv="Content-Type"content="text/html; charset=utf-8"/> <title>中英切换导航条</title> <styletype="text/css"> *{padding:0; margin:0;} li{ list-style:none; } a{ text-decoration:none;} .nav{ width:100%; height:40px; background:#222; margin-top:100px; overflow:hidden;} .list{ width:1000px; height:40px; margin:0 auto;} .list li{ float:left;} .list li a{ display:block; transition:0.3s;} .list b,.list i{ display:block; padding:0 30px; color:#aaa; line-height:40px; text-align:center;} .list b{ font-weight:100} .list i{ font-style:normal; background:#333; color:#fff;} .list a:hover{ margin-top:-40px;} </style> </head> <body> <pclass="nav"> <ulclass="list"> <li> <ahref="#"> <b>Index</b> <i>首页</i> </a> </li> <li> <ahref="#"> <b>course</b> <i>职业课程</i> </a> </li> <li> <ahref="#"> <b>study</b> <i>就业学习</i> </a> </li> <li> <ahref="#"> <b>BBS</b> <i>社区</i> </a> </li> <li> <ahref="#"> <b>JiKe+</b> <i>发现+</i> </a> </li> </ul> </p> </body> </html>
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
以上是js怎么在导航栏互相切换中英文的详细内容。更多信息请关注PHP中文网其他相关文章!