這篇“css3實(shí)現(xiàn)3D動(dòng)畫(huà)導(dǎo)航欄的示例”文章,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要參考一下,對(duì)于“css3實(shí)現(xiàn)3D動(dòng)畫(huà)導(dǎo)航欄的示例”,小編整理了以下知識(shí)點(diǎn),請(qǐng)大家跟著小編的步伐一步一步的慢慢理解,接下來(lái)就讓我們進(jìn)入主題吧。
創(chuàng)新互聯(lián)主要從事成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)蘿北,10余年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來(lái)電咨詢建站服務(wù):18980820575
css是一種用來(lái)表現(xiàn)HTML或XML等文件樣式的計(jì)算機(jī)語(yǔ)言,主要是用來(lái)設(shè)計(jì)網(wǎng)頁(yè)的樣式,使網(wǎng)頁(yè)更加美化。它也是一種定義樣式結(jié)構(gòu)如字體、顏色、位置等的語(yǔ)言,并且css樣式可以直接存儲(chǔ)于HTML網(wǎng)頁(yè)或者單獨(dú)的樣式單文件中,而樣式規(guī)則的優(yōu)先級(jí)由css根據(jù)這個(gè)層次結(jié)構(gòu)決定,從而實(shí)現(xiàn)級(jí)聯(lián)效果,發(fā)展至今,css不僅能裝飾網(wǎng)頁(yè),也可以配合各種腳本對(duì)于網(wǎng)頁(yè)進(jìn)行格式化。
頁(yè)面布局Document
樣式 *{ -webkit-box-sizing: border-box; } html,body { margin: 0; padding: 0; height: 100%; background: #47c9af;; color: #74777b; font-family: 'Raleway', Arial, sans-serif; } ul { list-style: none; } a{ text-decoration: none; color: rgba(0, 0, 0, 0.3); display: inline-block; font-weight: 700; } a:hover, .nav a:focus { color: #fff; } .nav { width: 820px; height: 300px; margin: 200px auto 0 auto; font-weight: 300; } .nav ul li { display: inline-block; position: relative; margin: 0 20px; font-size: 1.5em; } .tooltip-content { position: absolute; width: 80px; height: 80px; padding-top: 25px; left: 50%; margin-left: -40px; bottom: 20px; border-radius: 50%; text-align: center; background: #fff; color: #47c9af; opacity: 0; margin-bottom: 20px; cursor: pointer; } .tooltip-effect-1 .tooltip-content { -webkit-transform: translate3d(0, 10px, 0) rotate3d(1, 1, 1, 45deg); -webkit-transform-origin: 50% 100%; -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; } .tooltip-effect-1 .tooltip-content i { -webkit-transform: scale3d(0, 0, 1); -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; } .tooltip-effect-2 .tooltip-content { -webkit-transform: translate3d(0, 10px, 0); -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; } .tooltip-effect-2 .tooltip-content i { -webkit-transform: translate3d(0, 15px, 0); -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; } .tooltip-effect-3 .tooltip-content { -webkit-transform: translate3d(0, 10px, 0) rotate3d(0, 1, 0, 90deg); -webkit-transform-origin: 50% 100%; -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; } .tooltip-effect-3 .tooltip-content i { -webkit-transform: scale3d(0, 0, 1); -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; } .tooltip-effect-4 .tooltip-content { -webkit-transform: translate3d(0, -20px, 0); -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; } .tooltip-effect-4 .tooltip-content i { -webkit-transform: translate3d(0, 20px, 0); -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; } .tooltip-effect-5 .tooltip-content { -webkit-transform: scale3d(0, 0, 1); -webkit-transform-origin: 50% 100%; -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; } .tooltip-effect-5 .tooltip-content i { -webkit-transform: translate3d(0, 20px, 0); -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; } .tooltip:hover .tooltip-content, .tooltip:hover .tooltip-content i { opacity: 1; -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1); }
以上是“css3實(shí)現(xiàn)3D動(dòng)畫(huà)導(dǎo)航欄的示例”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!