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

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

如何利用純css3實(shí)現(xiàn)360度翻轉(zhuǎn)的按鈕

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

創(chuàng)新互聯(lián)專注于企業(yè)營銷型網(wǎng)站、網(wǎng)站重做改版、大洼網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5開發(fā)、商城網(wǎng)站定制開發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為大洼等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。

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

如何利用純css3實(shí)現(xiàn)360度翻轉(zhuǎn)的按鈕

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

html代碼:

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1.   

  2.             

  3.   

  4.           

css代碼:

CSS Code復(fù)制內(nèi)容到剪貼板

  1. ul.flatflipbuttons   

  2.         {   

  3.             margin: 0;   

  4.             padding: 0;   

  5.             list-style: none;   

  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.             display: inline-block;   

  15.             width: 100px; /* dimensions of buttons. */  

  16.             height: 100px;   

  17.             margin-right: 15px; /* spacing between buttons */  

  18.             background: white;   

  19.             text-transform: uppercase;   

  20.             text-align: center;   

  21.         }   

  22.            

  23.         ul.flatflipbuttons li a   

  24.         {   

  25.             display: table;   

  26.             font: bold 36px Arial; /* font size, pertains to icon fonts specifically */  

  27.             width: 100%;   

  28.             height: 100%;   

  29.             margin-bottom: 4px;   

  30.             color: black;   

  31.             background: #3B9DD5;   

  32.             text-decoration: none;   

  33.             outline: none;   

  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.             color: white;   

  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.             color: white;   

  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.             display: table-cell;   

  72.             vertical-align: middle;   

  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.             display: block;   

  84.             position: relative;   

  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-align: middle;   

  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.             color: black; /* 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.         }  

到此,關(guān)于“如何利用純css3實(shí)現(xiàn)360度翻轉(zhuǎn)的按鈕”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!


網(wǎng)頁標(biāo)題:如何利用純css3實(shí)現(xiàn)360度翻轉(zhuǎn)的按鈕
文章轉(zhuǎn)載:http://weahome.cn/article/gshpjs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部