回覆「資料」便可獲贈Python、Java學習資料css
在實際開發中,按鈕的應用是必不可少。使用 CSS 來製做按鈕,能夠更有新意,更有趣,也能夠自定義本身想要的樣式。網絡
1、平面樣式CSS按鈕
平面樣式按鈕的使用如今很是流行,而且符合無處不在的平面設計趨勢。,這些的平面樣式按鈕效果很好看。app
如下代碼是按鈕處於正常的狀況下的狀態。ide
例:學習
.button { background-color: #4CAF50; /* Green */ border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px;}
1. 按鈕顏色
顏色:Green ,Blue, Red, Gray ,Black。flex
可使用 background-color 屬性來設置按鈕顏色。
例
.button1 { background-color: #4CAF50; }
/* Green */ .button2 { background-color: #008CBA; }
/* Blue */ .button3 { background-color: #f44336; }
/* Red */ .button4 { background-color: #FFC0CB; color: black; }
/* Gray */ .button5 { background-color: #555555; }
2. 按鈕大小
尺寸10px ,12px ,16px 20px , 24px。
可使用 font-size 屬性來設置按鈕大小:
例 :
.button1 { font-size: 10px; }
.button2 { font-size: 12px; }
.button3 { font-size: 16px; }
.button4 { font-size: 20px; }
.button5 { font-size: 24px; }
3. 圓角按鈕
弧度:2px ,4px ,8px ,12px ,50%。
可使用 border-radius 屬性來設置圓角按鈕:
例:
.button1 { border-radius: 2px; }
.button2 { border-radius: 4px; }
.button3 { border-radius: 8px; }
.button4 { border-radius: 12px; }
.button5 { border-radius: 50%; }
2、邊框樣式CSS按鈕
邊框樣式按鈕與平面按鈕屬於同一類。惟一的區別是,將使用邊框來代替平面按鈕所使用的背景顏色。如下代碼是按鈕處於正常的狀況下的狀態。
1. 按鈕邊框顏色
綠 藍 紅 灰 黑
可使用 border 屬性設置按鈕邊框顏色:
例:
.button1 { background-color: white; color: black; border: 2px solid #4CAF50; /* Green */}
2. 鼠標懸停按鈕
可使用 :hover 選擇器來修改鼠標懸停在按鈕上的樣式。
提示: 可使用 transition-duration 屬性來設置 "hover" 效果的速度:
例:
.button { -webkit-transition-duration: 0.4s; /* Safari */ transition-duration: 0.4s;}
.button:hover { background-color: #4CAF50; /* Green */ color: white;}
鼠標放在對應的色塊上,顯示相對應的顏色。
3. 按鈕陰影
陰影按鈕 鼠標懸停後顯示陰影。
使用 box-shadow 屬性來爲按鈕添加陰影。
例:
.button1 { box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);}
.button2:hover { box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);}
4. 按鈕寬度
寬度:250px,50% ,100%
默認狀況下,按鈕的大小有按鈕上的文本內容決定( 根據文本內容匹配長度 )。可使用 width 屬性來設置按鈕的寬度:
提示: 若是要設置固定寬度可使用像素 (px) 爲單位,若是要設置響應式的按鈕能夠設置爲百分比。
CSS 實例
.button1 { width: 250px;}.button2 { width: 50%;}.button3 { width: 100%;}
3、按鈕組
1. 移除外邊距並添加 float:left 來設置按鈕組:
CSS 實例
.button { float: left;}
2. 帶邊框按鈕組
可使用 border 屬性來設置帶邊框的按鈕組:
CSS 實例
.button { float: left; border: 1px solid green}
4、按鈕動畫
1. 按樣式CSS按鈕
這些「按下」式按鈕結合了一些平面設計和假象,讓用戶感受他們實際上按下了按鈕。當用戶按下它時,它彷佛陷入了頁面。它的實現須要用到陰影來設置,使其具備3D彈出外觀。如下代碼是按鈕處於正常的狀況下的狀態。
<html lang="en"><head> <meta charset="UTF-8"> <title>編程字典</title> <style>.pm button { width: 200px; height: 100px; color: #fff; background-color: #6496c8; border: none; border-radius: 15px; box-shadow: 0 10px #27496d;}</style></head><body> <div class="pm"> <button class="button">Click Me</button> </div></body></html>
5、總結
本文基於Html基礎,主要介紹了Html中按鈕組件的使用,對於按鈕中須要用到的作了詳細的講解,用豐富的案例 ,多種樣式展現,幫助你們去更好的理解 。
最後,但願能夠幫助你們更好的學習CSS3。
------------------- End -------------------
往期精彩文章推薦:
本文分享自微信公衆號 - IT共享之家(info-share)。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。