魔幻般冒泡背景的CSS3按鈕動畫
本文由碼農網 – 小峰原創,轉載請看清文末的轉載要求,歡迎參與我們的付費投稿計劃!
這是一款非常有特點的CSS3按鈕,按鈕的背景不是北京圖片,也不是單純的顏色,而是一組魔幻般的冒泡背景動畫。當我們將滑鼠滑過按鈕時,按鈕的冒泡背景動畫就可以展示出來。可以說這款CSS3按鈕的設計風格相當有創意,而且令人驚歎的是,這些動畫都是用CSS3實現的,並沒有使用JavaScript,非常強大。
HTML程式碼:
<div id="buttonContainer"> <a href="#" class="button big blue">Big Button</a> <a href="#" class="button big green">Big Button</a> <a href="#" class="button big orange">Big Button</a> <a href="#" class="button big gray">Big Button</a> <a href="#" class="button blue medium">Medium Button</a> <a href="#" class="button green medium">Medium Button</a> <a href="#" class="button orange medium">Medium Button</a> <a href="#" class="button gray medium">Medium Button</a> <a href="#" class="button small blue">Small Button</a> <a href="#" class="button small green">Small Button</a> <a href="#" class="button small blue rounded">Rounded</a> <a href="#" class="button small orange">Small Button</a> <a href="#" class="button small gray">Small Button</a> <a href="#" class="button small green rounded">Rounded</a> </div>
CSS程式碼:
.button{ font:15px Calibri, Arial, sans-serif; /* A semi-transparent text shadow */ text-shadow:1px 1px 0 rgba(255,255,255,0.4); /* Overriding the default underline styling of the links */ text-decoration:none !important; white-space:nowrap; display:inline-block; vertical-align:baseline; position:relative; cursor:pointer; padding:10px 20px; background-repeat:no-repeat; /* The following two rules are fallbacks, in case the browser does not support multiple backgrounds. */ background-position:bottom left; background-image:url('button_bg.png'); /* Multiple backgrounds version. The background images are defined individually in color classes */ background-position:bottom left, top right, 0 0, 0 0; background-clip:border-box; /* Applying a default border raidus of 8px */ -moz-border-radius:8px; -webkit-border-radius:8px; border-radius:8px; /* A 1px highlight inside of the button */ -moz-box-shadow:0 0 1px #fff inset; -webkit-box-shadow:0 0 1px #fff inset; box-shadow:0 0 1px #fff inset; /* Animating the background positions with CSS3 */ /* Currently works only in Safari/Chrome */ -webkit-transition:background-position 1s; -moz-transition:background-position 1s; transition:background-position 1s; } .button:hover{ /* The first rule is a fallback, in case the browser does not support multiple backgrounds */ background-position:top left; background-position:top left, bottom right, 0 0, 0 0; } .button:active{ /* Moving the button 1px to the bottom when clicked */ bottom:-1px; } /* The three buttons sizes */ .button.big { font-size:30px;} .button.medium { font-size:18px;} .button.small { font-size:13px;} /* A more rounded button */ .button.rounded{ -moz-border-radius:4em; -webkit-border-radius:4em; border-radius:4em; } /* Defining four button colors */ /* BlueButton */ .blue.button{ color:#0f4b6d !important; border:1px solid #84acc3 !important; /* A fallback background color */ background-color: #48b5f2; /* Specifying a version with gradients according to */ background-image: url('button_bg.png'), url('button_bg.png'), -moz-radial-gradient( center bottom, circle, rgba(89,208,244,1) 0,rgba(89,208,244,0) 100px), -moz-linear-gradient(#4fbbf7, #3faeeb); background-image: url('button_bg.png'), url('button_bg.png'), -webkit-gradient( radial, 50% 100%, 0, 50% 100%, 100, from(rgba(89,208,244,1)), to(rgba(89,208,244,0))), -webkit-gradient(linear, 0% 0%, 0% 100%, from(#4fbbf7), to(#3faeeb)); } .blue.button:hover{ background-color:#63c7fe; background-image: url('button_bg.png'), url('button_bg.png'), -moz-radial-gradient( center bottom, circle, rgba(109,217,250,1) 0,rgba(109,217,250,0) 100px), -moz-linear-gradient(#63c7fe, #58bef7); background-image: url('button_bg.png'), url('button_bg.png'), -webkit-gradient( radial, 50% 100%, 0, 50% 100%, 100, from(rgba(109,217,250,1)), to(rgba(109,217,250,0))), -webkit-gradient(linear, 0% 0%, 0% 100%, from(#63c7fe), to(#58bef7)); } /* Green Button */ .green.button{ color:#345903 !important; border:1px solid #96a37b !important; background-color: #79be1e; background-image:url('button_bg.png'), url('button_bg.png'), -moz-radial-gradient(center bottom, circle, rgba(162,211,30,1) 0,rgba(162,211,30,0) 100px),-moz-linear-gradient(#82cc27, #74b317); background-image:url('button_bg.png'), url('button_bg.png'), -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(162,211,30,1)), to(rgba(162,211,30,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#82cc27), to(#74b317)); } .green.button:hover{ background-color:#89d228; background-image:url('button_bg.png'), url('button_bg.png'), -moz-radial-gradient(center bottom, circle, rgba(183,229,45,1) 0,rgba(183,229,45,0) 100px),-moz-linear-gradient(#90de31, #7fc01e); background-image:url('button_bg.png'), url('button_bg.png'), -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(183,229,45,1)), to(rgba(183,229,45,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#90de31), to(#7fc01e)); } /* Orange Button */ .orange.button{ color:#693e0a !important; border:1px solid #bea280 !important; background-color: #e38d27; background-image:url('button_bg.png'), url('button_bg.png'), -moz-radial-gradient(center bottom, circle, rgba(232,189,45,1) 0,rgba(232,189,45,0) 100px),-moz-linear-gradient(#f1982f, #d4821f); background-image:url('button_bg.png'), url('button_bg.png'), -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(232,189,45,1)), to(rgba(232,189,45,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#f1982f), to(#d4821f)); } .orange.button:hover{ background-color:#ec9732; background-image:url('button_bg.png'), url('button_bg.png'), -moz-radial-gradient(center bottom, circle, rgba(241,192,52,1) 0,rgba(241,192,52,0) 100px),-moz-linear-gradient(#f9a746, #e18f2b); background-image:url('button_bg.png'), url('button_bg.png'), -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(241,192,52,1)), to(rgba(241,192,52,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#f9a746), to(#e18f2b)); } .gray.button{ color:#525252 !important; border:1px solid #a5a5a5 !important; background-color: #a9adb1; background-image:url('button_bg.png'), url('button_bg.png'), -moz-radial-gradient(center bottom, circle, rgba(197,199,202,1) 0,rgba(197,199,202,0) 100px),-moz-linear-gradient(#c5c7ca, #92989c); background-image:url('button_bg.png'), url('button_bg.png'), -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(197,199,202,1)), to(rgba(197,199,202,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#c5c7ca), to(#92989c)); } .gray.button:hover{ background-color:#b6bbc0; background-image:url('button_bg.png'), url('button_bg.png'), -moz-radial-gradient(center bottom, circle, rgba(202,205,208,1) 0,rgba(202,205,208,0) 100px),-moz-linear-gradient(#d1d3d6, #9fa5a9); background-image:url('button_bg.png'), url('button_bg.png'), -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(202,205,208,1)), to(rgba(202,205,208,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#d1d3d6), to(#9fa5a9)); }
本文連結:http://www.codeceo.com/article/css3-button-bubble-animation.html
本文作者:碼農網 – 小峰
[ 原創作品,轉載必須在正文中標註並保留原文連結和作者等資訊。]
相關文章
- 美妙的 CSS3 動畫!夢幻般的按鈕效果CSSS3動畫
- CSS3動畫按鈕效果CSSS3動畫
- CSS3滑鼠懸浮動畫按鈕效果CSSS3動畫
- iOS動畫-按鈕動畫iOS動畫
- css3實現的滑鼠懸浮按鈕動畫效果CSSS3動畫
- 8款超酷而實用的CSS3按鈕動畫CSSS3動畫
- 純CSS3發光按鈕動畫 非常絢麗CSSS3動畫
- iOS 按鈕動畫iOS動畫
- WPF 按鈕背景圖片
- JavaScript點選按鈕切換背景顏色JavaScript
- 去掉手機頁中按鈕點選背景
- css3將radio單選按鈕模擬為按鈕形狀CSSS3
- 改變Android按鈕背景顏色的高效方法Android
- Qt中按鈕背景圖片的切換設定QT
- CSS3 checkbox開關按鈕效果CSSS3
- CSS3 3D立體按鈕CSSS33D
- CSS3滑動開關按鈕效果CSSS3
- CSS3叉號按鈕效果詳解CSSS3
- 11個CSS3按鈕製作教程CSSS3
- 超漂亮的CSS3按鈕製作教程分享CSSS3
- 推薦12組免費的CSS3按鈕CSSS3
- 9 款經典華麗的 CSS3 分享按鈕CSSS3
- web前端動畫專題(3):撩人的按鈕特效Web前端動畫特效
- Android中使按鈕的背景變得透明&前端中css設定透明背景Android前端CSS
- css3實現的美觀的提交按鈕效果CSSS3
- Flutter實現冒泡背景Flutter
- CSS3 美化radio單選按鈕CSSS3
- CSS3滑鼠懸浮交叉線效果按鈕CSSS3
- 新浪微博加號按鈕動畫實現方案動畫
- css滑鼠浮劃過切換按鈕背景圖片CSS
- CSS3 background-position定位背景圖片動畫效果CSSS3動畫
- css3實現的開關按鈕程式碼例項CSSS3
- CSS3提交按鈕等待打點迴圈效果CSSS3
- CSS3 radio單選按鈕美化效果CSSS3
- CSS3簡單圓角立體按鈕效果CSSS3
- CSS3模擬實現iphone返回按鈕效果CSSS3iPhone
- jQuery/CSS3經典按鈕系列外掛(一)jQueryCSSS3
- 按鈕上面的按鈕 (轉)