CSS3滑鼠懸浮動畫按鈕效果
分享一段程式碼例項,它實現了滑鼠懸浮實現動畫按鈕的功能。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> *, *:after, *:before { box-sizing: border-box; } .box { position: relative; margin: 30px auto; display: block; text-align: center; } button { border: none; color: inherit; background: none; outline: none; -webkit-appearance: none; cursor: pointer; } .button { display: inline-block; position: relative; z-index: 1; min-width: 150px; max-width: 250px; margin: 1em; padding: 1em 2em; overflow: hidden; vertical-align: middle; -webkit-backface-visibility: hidden; transition: color 0.3s ease-out; } .button:before,.button:after { content: ''; position: absolute; z-index: -1; border-radius: inherit; transition: all 0.3s ease-out; } .button span { vertical-align: middle; } .UpDown { color: #fff; border-radius: 4px; } .UpDown:hover { color: #7986cb; } .UpDown:after { background: #37474f; top: 2px; left: 2px; right: 2px; bottom: 2px; } .UpDown:before { top: 0; left: 0; width: 100%; height: 100%; background: #7986cb; transform: translate3d(-100%,100%,0); } .UpDown:hover:before { transform: translate3d(0,0,0); } .OutIn { color: #fff; border-radius: 4px; } .OutIn:hover { color: #3f51b5; } .OutIn:after, .OutIn:before { top: 0; left: 0; width: 100%; height: 100%; border-radius: inherit; } .OutIn:before { border: 2px solid #3f51b5; background-color: #fff; opacity: 0; -transform: scale3d(1.2,1.2,1); } .OutIn:hover:before { opacity: 1; transform: scale3d(1,1,1); } .OutIn:after { background-color: #3f51b5; transform: scale3d(1,1,1); } .OutIn:hover:after { opacity: 0; transform: scale3d(0.5,0.5,1); } </style> </head> <body> <div class="box"> <div class="box"> <button class="button UpDown"> <span>UpDown</span> </button> <button class="button OutIn"> <span>OutIn</span> </button> </div> </div> </body> </html>
上面的程式碼實現了我們的要求,更多內容可以參閱相關閱讀。
相關閱讀:
(1).box-sizing參閱CSS3 box-sizing一章節。
(2).appearance參閱css3 appearance一章節。
(3).backface-visibility參閱CSS3 backface-visibility一章節。
(4).transition參閱css transition一章節。
(5).border-radius參閱CSS3 border-radius一章節。
相關文章
- CSS3連結<a>滑鼠懸浮動畫效果CSSS3動畫
- 滑鼠懸浮連結動畫高亮效果動畫
- CSS 滑鼠懸浮動畫暫停效果CSS動畫
- CSS3動畫按鈕效果CSSS3動畫
- CSS3滑鼠懸浮圖片閃動效果CSSS3
- CSS3滑鼠懸浮元素放大效果CSSS3
- CSS滑鼠懸浮圖片動畫放大效果CSS動畫
- CSS3滑鼠懸浮div旋轉效果CSSS3
- CSS3滑鼠懸浮環裝遮罩效果CSSS3遮罩
- 利用css變數實現按鈕懸浮效果CSS變數
- 滑鼠懸浮div動畫改變尺寸動畫
- jQuery滑鼠懸浮翻牌效果詳解jQuery
- jQuery滑鼠懸浮聚焦效果詳解jQuery
- css滑鼠懸浮下拉選單效果CSS
- 滑鼠懸浮圖片旋轉效果
- CSS3滑動開關按鈕效果CSSS3
- CSS3滑鼠懸浮圖示旋轉CSSS3
- 滑鼠懸浮div實現旋轉效果
- 滑鼠懸浮電風扇旋轉效果
- CSS滑鼠懸浮行背景變色效果CSS
- CSS3圖片上下動畫浮動效果CSSS3動畫
- Flutter總結之懸浮按鈕FloatingActionButton使用Flutter
- 滑鼠懸浮圖片實現翻轉效果
- 滑鼠懸浮圖片實現縮放效果
- 滑鼠懸浮實現環形旋轉效果
- CSS滑鼠懸浮圖片模糊切換效果CSS
- CSS3滑鼠懸浮橫條從中間向兩邊擴充套件效果CSSS3套件
- CSS3滑鼠懸浮圖片前後翻轉CSSS3
- CSS3標懸浮圓形縮放效果CSSS3
- CSS3 checkbox開關按鈕效果CSSS3
- 滑鼠懸浮圖片出現文字說明效果
- 每日CSS_霓虹燈按鈕懸停效果CSS
- CSS3滑鼠懸浮圖片縮小出現文CSSS3
- CSS3滑鼠懸浮元素旋轉一定角度CSSS3
- 滑鼠懸浮小圖彈出大圖效果詳解
- [譯] CSS 變數實現炫酷滑鼠懸浮效果CSS變數
- 滑鼠懸浮導航欄背景和字型變色效果
- iOS - 新增一個全域性懸浮按鈕(整合pods版)iOS