SoFunction
Updated on 2025-04-03

JS realizes the switching effect of Chinese and English in navigation bar

Ideas:

The height of ul is half of li, ul{overflow:hidden}

li:hover{margin-top:-40px;}

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http:///TR/xhtml1/DTD/">
<html xmlns="http:///1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Chinese-English switching navigation bar</title>
<style type="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>
<div class="nav">
 <ul class="list">
 <li>
  <a href="#">
  <b>Index</b>
  <i>front page</i>
  </a>
 </li>
 <li>
  <a href="#">
  <b>course</b>
  <i>Vocational courses</i>
  </a>
 </li>
 <li>
  <a href="#">
  <b>study</b>
  <i>Employment study</i>
  </a>
 </li>
 <li>
  <a href="#">
  <b>BBS</b>
  <i>Community</i>
  </a>
 </li>
 <li>
  <a href="#">
  <b>JiKe+</b>
  <i>Discover+</i>
  </a>
 </li>
 </ul>
</div>
</body>
</html>

The above is all the content of this article. I hope that the content of this article will help you study or work. I also hope to support me more!