您好,登錄后才能下訂單哦!
這篇文章主要介紹“如何利用純css3實現360度翻轉的按鈕”,在日常操作中,相信很多人在如何利用純css3實現360度翻轉的按鈕問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何利用純css3實現360度翻轉的按鈕”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
今天要給大家分享的是由css3實現的翻轉360動畫按鈕。之前已為大家分享了好幾款css3按鈕,大家可以點擊鏈接進去找一找適合自己的。哈哈。下面先為大家上效果圖:
下面是實現的代碼。
html代碼:
XML/HTML Code復制內容到剪貼板
<ul class="flatflipbuttons">
<li><a href="http://www.neiyidaogou.com" title="Search"><span class="icon-search"></span>
</a><b>Search</b></li>
<li><a href="http://www.neiyidaogou.com"><span class="icon-gears"></span></a><b>Gears</b></li>
<li><a href="http://www.neiyidaogou.com"><span class="icon-rss"></span></a><b>RSS</b></li>
<li><a href="http://www.neiyidaogou.com"><span class="icon-twitter"></span></a><b>Twitter</b></li>
<li><a href="http://www.neiyidaogou.com"><span class="icon-rocket"></span></a><b>Rocket</b></li>
</ul>
<br />
<br />
<ul class="flatflipbuttons second">
<li><a href="http://www.neiyidaogou.com"><span>
<img src="imgs/rss-heart.png" /></span></a></li>
<li><a href="http://www.neiyidaogou.com"><span>
<img src="imgs/twitter-heart.png" /></span></a></li>
<li><a href="http://www.neiyidaogou.com"><span>
<img src="imgs/facebook-heart.png" /></span></a></li>
<li><a href="http://www.neiyidaogou.com"><span>
<img src="imgs/google-heart.png" /></span></a></li>
<li><a href="http://www.neiyidaogou.com"><span>
<img src="imgs/stumble-heart.png" /></span></a></li>
</ul>
css代碼:
CSS Code復制內容到剪貼板
ul.flatflipbuttons
{
margin: 0;
padding: 0;
list-style: none;
-webkit-perspective: 10000px; /* larger the value, the less pronounced the 3D effect */
-moz-perspective: 10000px;
perspective: 10000px;
}
ul.flatflipbuttons li
{
margin: 0;
display: inline-block;
width: 100px; /* dimensions of buttons. */
height: 100px;
margin-right: 15px; /* spacing between buttons */
background: white;
text-transform: uppercase;
text-align: center;
}
ul.flatflipbuttons li a
{
display: table;
font: bold 36px Arial; /* font size, pertains to icon fonts specifically */
width: 100%;
height: 100%;
margin-bottom: 4px;
color: black;
background: #3B9DD5;
text-decoration: none;
outline: none;
-webkit-transition: all 300ms ease-out; /* CSS3 transition. Last value is pause before transition play */
-moz-transition: all 300ms ease-out;
transition: all 300ms ease-out;
}
ul.flatflipbuttons li:nth-of-type(1) a
{
color: white;
background: #3B9DD5;
}
ul.flatflipbuttons li:nth-of-type(2) a
{
background: #A1CD3A;
}
ul.flatflipbuttons li:nth-of-type(3) a
{
background: #80C5EC;
}
ul.flatflipbuttons li:nth-of-type(4) a
{
color: white;
background: #635746;
}
ul.flatflipbuttons li:nth-of-type(5) a
{
background: #F2C96D;
}
ul.flatflipbuttons li a span
{
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: table-cell;
vertical-align: middle;
width: 100%;
height: 100%;
-webkit-transition: all 300ms ease-out; /* CSS3 transition. */
-moz-transition: all 300ms ease-out;
transition: all 300ms ease-out;
}
ul.flatflipbuttons li b
{
/* CSS for text beneath button */
display: block;
position: relative;
width: 100%;
opacity: 0;
-webkit-transition: all 300ms ease-out 0.2s; /* CSS3 transition. 0.2s delay */
-moz-transition: all 300ms ease-out 0.2s;
transition: all 300ms ease-out 0.2s;
}
ul.flatflipbuttons li a img
{
/* CSS for image if defined inside button */
border-width: 0;
vertical-align: middle;
}
ul.flatflipbuttons li:hover a
{
-webkit-transform: rotateY(180deg); /* flip horizontally 180deg*/
-moz-transform: rotateY(180deg);
transform: rotateY(180deg);
background: #c1e4ec; /* bgcolor of button onMouseover*/
-webkit-transition-delay: 0.2s;
-moz-transition-delay: 0.2s;
transition-delay: 0.2s;
}
ul.flatflipbuttons li:hover a span
{
color: black; /* color of icon font onMouseover */
-webkit-transform: rotateY(180deg);
-moz-transform: rotateY(180deg); /* flip horizontally 180deg*/
transform: rotateY(180deg);
-webkit-transition-delay: 0.2s;
-moz-transition-delay: 0.2s;
transition-delay: 0.2s;
}
ul.flatflipbuttons li:hover b
{
opacity: 1;
}
/* CSS for 2nd menu below specifically */
ul.second li a
{
background: #eee !important;
}
ul.second li a:hover
{
background: #ddd !important;
}
到此,關于“如何利用純css3實現360度翻轉的按鈕”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。