最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識(shí)百科 - 正文

jquery和css3實(shí)現(xiàn)熊貓tv導(dǎo)航代碼分享

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 20:03:24
文檔

jquery和css3實(shí)現(xiàn)熊貓tv導(dǎo)航代碼分享

jquery和css3實(shí)現(xiàn)熊貓tv導(dǎo)航代碼分享:本文主要給大家詳細(xì)分享的是jquery+css3來寫出熊貓tv導(dǎo)航的效果,以及代碼分享,喜歡的朋友參考下。希望能幫助到大家。實(shí)現(xiàn)原理請(qǐng)看以下源代碼<p class="ph-nav" data-pdt-block="pheader-n"> <p
推薦度:
導(dǎo)讀jquery和css3實(shí)現(xiàn)熊貓tv導(dǎo)航代碼分享:本文主要給大家詳細(xì)分享的是jquery+css3來寫出熊貓tv導(dǎo)航的效果,以及代碼分享,喜歡的朋友參考下。希望能幫助到大家。實(shí)現(xiàn)原理請(qǐng)看以下源代碼<p class="ph-nav" data-pdt-block="pheader-n"> <p
本文主要給大家詳細(xì)分享的是jquery+css3來寫出熊貓tv導(dǎo)航的效果,以及代碼分享,喜歡的朋友參考下。希望能幫助到大家。

實(shí)現(xiàn)原理

請(qǐng)看以下源代碼

<p class="ph-nav" data-pdt-block="pheader-n">
 <p class="ph-nav_shadow" style="left: 0px; width: 62px;"></p>
 <ul>
 <li class="ph-nav_item ph-nav_item--current">
 <a href="/" rel="external nofollow" >
 首頁
 
 </a>
 </li>
 <li class="ph-nav_item">
 <a href="/all" rel="external nofollow" >
 全部
 </a>
 </li>
 ...
 </ul>
</p>

綠色的框?qū)?yīng)的代碼是class為ph-nav_shadow的p。

通過jquery來改變遮罩層(.ph-nav_shadow)的left與width值,css3加上動(dòng)畫效果實(shí)現(xiàn)綠色框的動(dòng)畫。

通話jquery對(duì)li標(biāo)簽類的添加與刪除實(shí)現(xiàn)文字顏色的變化。(.ph-nav_item--current)。

具體實(shí)現(xiàn)

編寫html代碼

 <header>
 <p class="w">
 <p class="header_logo l"><img src="img/logo.png" alt=""></p>
 <p class="header_nav r">
 <p class="header_nav_shadow"></p>
 <ul>
 <li class="header_nav_li-hover"><a href="">首頁</a></li>
 <li><a href="">智能家居</a></li>
 <li><a href="">案例展示</a></li>
 <li><a href="">致創(chuàng)能源</a></li>
 <li><a href="">答疑解惑</a></li>
 <li><a href="">合作加盟</a></li> 
 </ul>
 </p>
 </p> 
 </header>

編寫css代碼

.header_nav{
 width: 592px;
 height: 50px;
 position: relative;
}
.header_nav_shadow{
 position: absolute;
 top: 0;
 left: 0;
 bottom: 0;
 width: 72px;
 background: #F29400;
 transition: all ease-in-out .3s;
 z-index: 1;
}
.header_nav ul li{
 display: block;
 float: left;
 overflow: hidden;
 height: 50px;
 line-height: 50px;
 transition: all ease-in-out .3s;
 position: relative;
 z-index: 2;
}
.header_nav_li-hover a{
 color: #fff;
}
.header_nav ul li a{
 display: block;
 padding: 0 20px;
 height: 50px;
 line-height: 50px;
 transition: all ease-in-out .3s;
}

編寫js代碼(主要)

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

jquery和css3實(shí)現(xiàn)熊貓tv導(dǎo)航代碼分享

jquery和css3實(shí)現(xiàn)熊貓tv導(dǎo)航代碼分享:本文主要給大家詳細(xì)分享的是jquery+css3來寫出熊貓tv導(dǎo)航的效果,以及代碼分享,喜歡的朋友參考下。希望能幫助到大家。實(shí)現(xiàn)原理請(qǐng)看以下源代碼<p class="ph-nav" data-pdt-block="pheader-n"> <p
推薦度:
標(biāo)簽: 分享 導(dǎo)航 代碼
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top