91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何利用純css3實現360度翻轉的按鈕

發布時間:2021-07-30 09:13:30 來源:億速云 閱讀:99 作者:chen 欄目:web開發

這篇文章主要介紹“如何利用純css3實現360度翻轉的按鈕”,在日常操作中,相信很多人在如何利用純css3實現360度翻轉的按鈕問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何利用純css3實現360度翻轉的按鈕”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

  今天要給大家分享的是由css3實現的翻轉360動畫按鈕。之前已為大家分享了好幾款css3按鈕,大家可以點擊鏈接進去找一找適合自己的。哈哈。下面先為大家上效果圖:

如何利用純css3實現360度翻轉的按鈕

  下面是實現的代碼。

  html代碼:

XML/HTML Code復制內容到剪貼板

  1. <ul class="flatflipbuttons">  

  2.             <li><a href="http://www.neiyidaogou.com" title="Search"><span class="icon-search"></span>  

  3.             </a><b>Search</b></li>  

  4.             <li><a href="http://www.neiyidaogou.com"><span class="icon-gears"></span></a><b>Gears</b></li>  

  5.             <li><a href="http://www.neiyidaogou.com"><span class="icon-rss"></span></a><b>RSS</b></li>  

  6.             <li><a href="http://www.neiyidaogou.com"><span class="icon-twitter"></span></a><b>Twitter</b></li>  

  7.             <li><a href="http://www.neiyidaogou.com"><span class="icon-rocket"></span></a><b>Rocket</b></li>  

  8.         </ul>  

  9.         <br />  

  10.         <br />  

  11.         <ul class="flatflipbuttons second">  

  12.             <li><a href="http://www.neiyidaogou.com"><span>  

  13.                 <img src="imgs/rss-heart.png" /></span></a></li>  

  14.             <li><a href="http://www.neiyidaogou.com"><span>  

  15.                 <img src="imgs/twitter-heart.png" /></span></a></li>  

  16.             <li><a href="http://www.neiyidaogou.com"><span>  

  17.                 <img src="imgs/facebook-heart.png" /></span></a></li>  

  18.             <li><a href="http://www.neiyidaogou.com"><span>  

  19.                 <img src="imgs/google-heart.png" /></span></a></li>  

  20.             <li><a href="http://www.neiyidaogou.com"><span>  

  21.                 <img src="imgs/stumble-heart.png" /></span></a></li>  

  22.         </ul>  

  css代碼:

CSS Code復制內容到剪貼板

  1. ul.flatflipbuttons   

  2.         {   

  3.             margin: 0;   

  4.             padding: 0;   

  5.             list-stylenone;   

  6.             -webkit-perspective: 10000px/* larger the value, the less pronounced the 3D effect */  

  7.             -moz-perspective: 10000px;   

  8.             perspective: 10000px;   

  9.         }   

  10.            

  11.         ul.flatflipbuttons li   

  12.         {   

  13.             margin: 0;   

  14.             displayinline-block;   

  15.             width100px/* dimensions of buttons. */  

  16.             height100px;   

  17.             margin-right15px/* spacing between buttons */  

  18.             backgroundwhite;   

  19.             text-transformuppercase;   

  20.             text-aligncenter;   

  21.         }   

  22.            

  23.         ul.flatflipbuttons li a   

  24.         {   

  25.             display: table;   

  26.             fontbold 36px Arial/* font size, pertains to icon fonts specifically */  

  27.             width: 100%;   

  28.             height: 100%;   

  29.             margin-bottom4px;   

  30.             colorblack;   

  31.             background#3B9DD5;   

  32.             text-decorationnone;   

  33.             outlinenone;   

  34.             -webkit-transition: all 300ms ease-out; /* CSS3 transition. Last value is pause before transition play */  

  35.             -moz-transition: all 300ms ease-out;   

  36.             transition: all 300ms ease-out;   

  37.         }   

  38.            

  39.         ul.flatflipbuttons li:nth-of-type(1) a   

  40.         {   

  41.             colorwhite;   

  42.             background#3B9DD5;   

  43.         }   

  44.            

  45.         ul.flatflipbuttons li:nth-of-type(2) a   

  46.         {   

  47.             background#A1CD3A;   

  48.         }   

  49.            

  50.         ul.flatflipbuttons li:nth-of-type(3) a   

  51.         {   

  52.             background#80C5EC;   

  53.         }   

  54.            

  55.         ul.flatflipbuttons li:nth-of-type(4) a   

  56.         {   

  57.             colorwhite;   

  58.             background#635746;   

  59.         }   

  60.            

  61.         ul.flatflipbuttons li:nth-of-type(5) a   

  62.         {   

  63.             background#F2C96D;   

  64.         }   

  65.            

  66.         ul.flatflipbuttons li a span   

  67.         {   

  68.             -moz-box-sizing: border-box;   

  69.             -webkit-box-sizing: border-box;   

  70.             box-sizing: border-box;   

  71.             displaytable-cell;   

  72.             vertical-alignmiddle;   

  73.             width: 100%;   

  74.             height: 100%;   

  75.             -webkit-transition: all 300ms ease-out; /* CSS3 transition. */  

  76.             -moz-transition: all 300ms ease-out;   

  77.             transition: all 300ms ease-out;   

  78.         }   

  79.            

  80.         ul.flatflipbuttons li b   

  81.         {   

  82.             /* CSS for text beneath button */  

  83.             displayblock;   

  84.             positionrelative;   

  85.             width: 100%;   

  86.             opacity: 0;   

  87.             -webkit-transition: all 300ms ease-out 0.2s; /* CSS3 transition. 0.2s delay */  

  88.             -moz-transition: all 300ms ease-out 0.2s;   

  89.             transition: all 300ms ease-out 0.2s;   

  90.         }   

  91.            

  92.            

  93.         ul.flatflipbuttons li a img   

  94.         {   

  95.             /* CSS for image if defined inside button */  

  96.             border-width: 0;   

  97.             vertical-alignmiddle;   

  98.         }   

  99.            

  100.            

  101.         ul.flatflipbuttons li:hover a   

  102.         {   

  103.             -webkit-transform: rotateY(180deg); /* flip horizontally 180deg*/  

  104.             -moz-transform: rotateY(180deg);   

  105.             transform: rotateY(180deg);   

  106.             background#c1e4ec/* bgcolor of button onMouseover*/  

  107.             -webkit-transition-delay: 0.2s;   

  108.             -moz-transition-delay: 0.2s;   

  109.             transition-delay: 0.2s;   

  110.         }   

  111.            

  112.         ul.flatflipbuttons li:hover a span   

  113.         {   

  114.             colorblack/* color of icon font onMouseover */  

  115.             -webkit-transform: rotateY(180deg);   

  116.             -moz-transform: rotateY(180deg); /* flip horizontally 180deg*/  

  117.             transform: rotateY(180deg);   

  118.             -webkit-transition-delay: 0.2s;   

  119.             -moz-transition-delay: 0.2s;   

  120.             transition-delay: 0.2s;   

  121.         }   

  122.            

  123.            

  124.         ul.flatflipbuttons li:hover b   

  125.         {   

  126.             opacity: 1;   

  127.         }   

  128.            

  129.         /* CSS for 2nd menu below specifically */  

  130.            

  131.         ul.second li a   

  132.         {   

  133.             background#eee !important;   

  134.         }   

  135.            

  136.         ul.second li a:hover   

  137.         {   

  138.             background#ddd !important;   

  139.         }  

到此,關于“如何利用純css3實現360度翻轉的按鈕”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

固安县| 镇沅| 康保县| 庐江县| 台中市| 藁城市| 池州市| 苍南县| 乐清市| 道真| 深圳市| 梅州市| 宁河县| 乃东县| 古丈县| 阳高县| 中方县| 班玛县| 固安县| 阿鲁科尔沁旗| 潞城市| 五河县| 青州市| 阆中市| 乌拉特前旗| 惠州市| 安陆市| 龙川县| 威海市| 辽宁省| 隆化县| 灵武市| 泸西县| 浪卡子县| 古丈县| 彰武县| 繁昌县| 隆尧县| 民乐县| 景德镇市| 铁力市|