您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“js如何實(shí)現(xiàn)導(dǎo)航欄中英文切換效果”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“js如何實(shí)現(xiàn)導(dǎo)航欄中英文切換效果”這篇文章吧。
思路:
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"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>中英切換導(dǎo)航條</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>首頁</i> </a> </li> <li> <a href="#"> <b>course</b> <i>職業(yè)課程</i> </a> </li> <li> <a href="#"> <b>study</b> <i>就業(yè)學(xué)習(xí)</i> </a> </li> <li> <a href="#"> <b>BBS</b> <i>社區(qū)</i> </a> </li> <li> <a href="#"> <b>JiKe+</b> <i>發(fā)現(xiàn)+</i> </a> </li> </ul> </div> </body> </html>
以上是“js如何實(shí)現(xiàn)導(dǎo)航欄中英文切換效果”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。