真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

css3怎么實(shí)現(xiàn)動(dòng)畫導(dǎo)航

這篇文章主要介紹“css3怎么實(shí)現(xiàn)動(dòng)畫導(dǎo)航”,在日常操作中,相信很多人在css3怎么實(shí)現(xiàn)動(dòng)畫導(dǎo)航問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”css3怎么實(shí)現(xiàn)動(dòng)畫導(dǎo)航”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

創(chuàng)新互聯(lián)長(zhǎng)期為近千家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對(duì)不同對(duì)象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺(tái),與合作伙伴共同營(yíng)造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為周寧企業(yè)提供專業(yè)的成都做網(wǎng)站、成都網(wǎng)站建設(shè)、成都外貿(mào)網(wǎng)站建設(shè),周寧網(wǎng)站改版等技術(shù)服務(wù)。擁有十多年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。

之前為大家介紹了好多導(dǎo)航菜單,今天給大家分享一款簡(jiǎn)潔的純css3代碼實(shí)現(xiàn)的動(dòng)畫導(dǎo)航。鼠標(biāo)經(jīng)過(guò)的時(shí)候以背景色以菱形漸變?yōu)殚L(zhǎng)方形。效果圖如下:

css3怎么實(shí)現(xiàn)動(dòng)畫導(dǎo)航

實(shí)現(xiàn)的代碼。

html代碼:

代碼如下:


       
       
       
   

css3代碼:

代碼如下:

.contener_link
{
 text-align: center;
 position: relative;
 width: 170px;
 height: 50px;
 cursor: pointer;
 display: inline-block;
}
.contener_link .link_txt
{
 font-family:'Roboto';
 position: absolute;
 width: 150px;
 font-weight: 300;
 text-decoration: none;
 font-size:22px;
 padding: 10px;
 color: #ffffff;
}
.contener_link:hover
{
 background-color: #f8b334;
 -webkit-animation-duration:1s;
 -webkit-animation-name: diaganim;
 -moz-animation-duration:1s;
 -moz-animation-name: diaganim;
 -ms-animation-duration:1s;
 -ms-animation-name: diaganim;
 animation-duration:1s;
 animation-name: diaganim;
}
@-webkit-keyframes diaganim
{
 0% {-webkit-transform: skewX(-80deg);}
 100% {-webkit-transform: skewX(0deg);}
}
@-moz-keyframes diaganim
{
 0% {-moz-transform: skewX(-80deg);}
 100% {-moz-transform: skewX(0deg);}
}
@-ms-keyframes diaganim
{
 0% {-ms-transform: skewX(-80deg);}
 100% {-ms-transform: skewX(0deg);}
}
@keyframes diaganim
{
 0% {transform: skewX(-80deg);}
 100% {transform: skewX(0deg);}
}

到此,關(guān)于“css3怎么實(shí)現(xiàn)動(dòng)畫導(dǎo)航”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!


當(dāng)前名稱:css3怎么實(shí)現(xiàn)動(dòng)畫導(dǎo)航
標(biāo)題路徑:http://weahome.cn/article/igdpcs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部