<span id="mktg5"></span>

<i id="mktg5"><meter id="mktg5"></meter></i>

        <label id="mktg5"><meter id="mktg5"></meter></label>
        最新文章專題視頻專題問答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)前位置: 首頁 - 科技 - 知識百科 - 正文

        CSS3圓環(huán)動態(tài)彈出菜單

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

        CSS3圓環(huán)動態(tài)彈出菜單

        CSS3圓環(huán)動態(tài)彈出菜單:體驗(yàn)效果:代碼如下: <!DOCTYPE html> <html lang=zh> <head> <meta charset=UTF-8> <meta http-equiv=X-UA-Compatible content=IE=edge,chrome=1> <met
        推薦度:
        導(dǎo)讀CSS3圓環(huán)動態(tài)彈出菜單:體驗(yàn)效果:代碼如下: <!DOCTYPE html> <html lang=zh> <head> <meta charset=UTF-8> <meta http-equiv=X-UA-Compatible content=IE=edge,chrome=1> <met

        體驗(yàn)效果:


        代碼如下:

        <!DOCTYPE html>
        <html lang="zh">
        <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>純CSS3圓形主菜單展開特效 - 何問起</title><base target="_blank" />
        <link  rel="stylesheet">
        <link  rel="stylesheet">
        <link rel="stylesheet" type="text/css" >
        <style type="text/css">
         .demo{
         padding: 2em 0;
         transform: translate3d(0, 0, 0);
         }
         .navbar{
         width: 150px;
         height: 150px;
         line-height: 150px;
         border-radius: 50%;
         background: #fff;
         margin: 70px auto;
         position: relative;
         cursor: pointer;
         text-align: center;
         font-size: 1.75em;
         font-weight: bold;
         color: #99b977;
         transition: 0.24s 0.2s;
         }
         .navbar:hover{
         background: rgba(255, 255, 255, 0.75);
         }
         .navbar .menu{
         list-style: none;
         padding: 0;
         margin: 0;
         position: absolute;
         top: -75px;
         left: -75px;
         border: 150px solid transparent;
         cursor: default;
         border-radius: 50%;
         transform: scale(0);
         transition: transform 1.4s 0.07s;
         z-index: -1;
         }
         .navbar:hover .menu{
         transition: transform 0.4s 0.08s, z-index 0s 0.5s;
         transform: scale(1);
         z-index: 1;
         }
         .navbar .menu li{
         position: absolute;
         top: -100px;
         left: -100px;
         transform-origin: 100px 100px;
         transition: all 0.5s 0.1s;
         }
         .navbar:hover .menu li{
         transition: all 0.6s;
         }
         .navbar .menu li a{
         width: 45px;
         height: 45px;
         line-height: 45px;
         border-radius: 50%;
         background: #fff;
         position: absolute;
         font-size: 60%;
         color: #99b977;
         transition: 0.6s;
         }
         .navbar:hover .menu li:nth-child(1){
         transition-delay: 0.02s;
         transform: rotate(85deg);
         }
         .navbar:hover .menu li:nth-child(1) a{
         transition-delay: 0.04s;
         transform: rotate(635deg);
         }
         .navbar:hover .menu li:nth-child(2){
         transition-delay: 0.04s;
         transform: rotate(125deg);
         }
         .navbar:hover .menu li:nth-child(2) a{
         transition-delay: 0.08s;
         transform: rotate(595deg);
         }
         .navbar:hover .menu li:nth-child(3){
         transition-delay: 0.06s;
         transform: rotate(165deg);
         }
         .navbar:hover .menu li:nth-child(3) a{
         transition-delay: 0.12s;
         transform: rotate(555deg);
         }
         .navbar:hover .menu li:nth-child(4){
         transition-delay: 0.08s;
         transform: rotate(205deg);
         }
         .navbar:hover .menu li:nth-child(4) a{
         transition-delay: 0.16s;
         transform: rotate(515deg);
         }
         .navbar:hover .menu li:nth-child(5){
         transition-delay: 0.1s;
         transform: rotate(245deg);
         }
         .navbar:hover .menu li:nth-child(5) a{
         transition-delay: 0.2s;
         transform: rotate(475deg);
         }
         .navbar:hover .menu li:nth-child(6){
         transition-delay: 0.12s;
         transform: rotate(285deg);
         }
         .navbar:hover .menu li:nth-child(6) a{
         transition-delay: 0.24s;
         transform: rotate(435deg);
         }
         .navbar:hover .menu li:nth-child(7){
         transition-delay: 0.14s;
         transform: rotate(325deg);
         }
         .navbar:hover .menu li:nth-child(7) a{
         transition-delay: 0.28s;
         transform: rotate(395deg);
         }
         .navbar:hover .menu li:nth-child(8){
         transition-delay: 0.16s;
         transform: rotate(365deg);
         }
         .navbar:hover .menu li:nth-child(8) a{
         transition-delay: 0.32s;
         transform: rotate(355deg);
         }
         .navbar:hover .menu li:nth-child(9){
         transition-delay: 0.18s;
         transform: rotate(405deg);
         }
         .navbar:hover .menu li:nth-child(9) a{
         transition-delay: 0.36s;
         transform: rotate(315deg);
         }
        </style>
        </head>
        <body>
        <div class="demo">
         <div class="container">
         <div class="row">
         <div class="col-md-12">
         <div class="navbar">主菜單
         <ul class="menu">
         <li><a  class="fa fa-facebook"></a></li>
         <li><a  class="fa fa-google-plus"></a></li>
         <li><a  class="fa fa-twitter"></a></li>
         <li><a  class="fa fa-linkedin"></a></li>
         <li><a  class="fa fa-pinterest"></a></li>
         <li><a  class="fa fa-rss"></a></li>
         <li><a  class="fa fa-instagram"></a></li>
         <li><a  class="fa fa-skype"></a></li>
         <li><a  class="fa fa-github"></a></li>
         </ul>
         </div>
         </div>
         </div>
         </div>
        </div>
        
        <div style="text-align:center;margin:50px 0; font:normal 14px/24px 'MicroSoft YaHei';">
        <p>適用瀏覽器:支持CSS3的瀏覽器</p>
        <p>來源:<a  target="_blank">何問起</a></p>
        </div>
        </body>
        </html>

        特效推薦:

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

        文檔

        CSS3圓環(huán)動態(tài)彈出菜單

        CSS3圓環(huán)動態(tài)彈出菜單:體驗(yàn)效果:代碼如下: <!DOCTYPE html> <html lang=zh> <head> <meta charset=UTF-8> <meta http-equiv=X-UA-Compatible content=IE=edge,chrome=1> <met
        推薦度:
        標(biāo)簽: 顯示 菜單 動畫
        • 熱門焦點(diǎn)

        最新推薦

        猜你喜歡

        熱門推薦

        專題
        Top
        主站蜘蛛池模板: 亚洲激情中文字幕| 大胆亚洲人体视频| 亚洲一区二区三区香蕉| 亚洲精华液一二三产区| 永久免费在线观看视频| 国产精品亚洲аv无码播放| 五月婷婷免费视频| 日韩亚洲国产二区| 野花视频在线官网免费1| 成人午夜18免费看| 国产 亚洲 中文在线 字幕| 久久免费看黄a级毛片| 亚洲人成电影亚洲人成9999网| 三年在线观看免费观看完整版中文| 免费一级成人毛片| 无遮挡a级毛片免费看| 免费国产美女爽到喷出水来视频| 亚洲精品国产suv一区88| 午夜a级成人免费毛片| 亚洲精品国产第一综合99久久| 精品久久久久久久免费加勒比| 亚洲一区二区无码偷拍| 成年性生交大片免费看| 在线精品亚洲一区二区| 免费观看毛片视频| 国产亚洲综合视频| 免费人成激情视频| a级毛片在线视频免费观看| 国产AV无码专区亚洲精品| 日本免费电影一区二区| 亚洲综合久久久久久中文字幕| 亚洲精品动漫免费二区| 亚洲日韩在线中文字幕综合| 亚洲福利精品电影在线观看| 一级毛片在线播放免费| 国产亚洲精品a在线观看| 最新国产乱人伦偷精品免费网站| 亚洲欧洲免费视频| 成人午夜大片免费7777| 一级毛片**免费看试看20分钟| 国产亚洲成AV人片在线观黄桃|