在
之前的文章《新手篇:如何用ccs製作一個簡單的佈局(附程式碼)》中,跟大家介紹如何用ccs製作一個簡單的版面。以下這篇文章跟大家介紹怎麼使用css3製作按鈕加入動態效果,我們一起看看怎麼做。
css
如何實作button
按鈕效果?
body,使用
button按鈕,新增文字
value設定為「開始遊戲」以方便設定
class轉為
id選擇器。
<body> <input id="search" name="cx" type="button" value="开始游戏" class="btn search"> </body>效果代碼 效果出來了,能看到按鈕效果了,但是沒有給它添加動態裝飾,透過使用
css給它添加動態效果,一起看看怎麼做。
style之間,對
search進行樣式初始化,加入設定高度和寬度,然後使用設定背景
background,設定
no-repeat這個屬性背景圖將不會被重複。
.search { width: 185px; height: 70px; background: url(images/btn_08.jpg) no-repeat center; }程式碼效果 2、接著,在
css3按鈕新增圓角效果設定屬性每個
border的四個值,最後設定居中對齊使用
float: left。
border-radius: 8px; -webkit-border-radius: 8px; -o-border-radius: 8px; -moz-border-radius: 8px; float: left;程式碼效果 四點邊圓角效果出來了3、再給
search進行樣式加入字體大小、文字對齊方式、字體的粗細,設定
border元素所有邊框的樣式、顏色、形狀。
font-size: 30px; text-align: center; font-weight: bold; border: none; color: #fff; cursor: pointer; line-height: 70px; font-family: 微软雅黑;4、在
style之間,對
btn進行樣式初始化,加入設定高度和寬度,然後使用設定背景
background。
.btn { width: 383px; height: 70px;line-height: 0; border: 2px solid #a2f3ff; background: #f3682d; }程式碼效果 5、再給
btn進行樣式添加字體大小、文字對齊方式、字體的粗細,設置
border元素所有邊框的樣式、顏色、形狀。
border-radius: 37px; -webkit-border-radius: 37px; -o-border-radius: 37px; -moz-border-radius: 37px; text-shadow: 3px 2px #d4481b; -webkit-text-shadow: 3px 2px #d4481b; -o-text-shadow: 3px 2px #d4481b; -moz-text-shadow: 3px 2px #d4481b; font-family: 微软雅黑;程式碼效果 6、將動畫與
search綁定
#search{ animation: breathe 1.1s infinite;
7、使用@keyframes
规则,创建动画。
@keyframes breathe{ 0%{ transform: scale(.99); } 50%{ transform: scale(1.03); } 100%{ transform: scale(.99); } }
代码效果
ok,编辑代码完成。
完整代码
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>button按钮</title> <style type="text/css"> .search { width: 185px; height: 70px; background: url(images/btn_08.jpg) no-repeat center; border-radius: 8px; -webkit-border-radius: 8px; -o-border-radius: 8px; -moz-border-radius: 8px; float: left; font-size: 30px; text-align: center; font-weight: bold; border: none; color: #fff; cursor: pointer; line-height: 70px; font-family: 微软雅黑; } .btn { width: 383px; height: 70px;line-height: 0; border: 2px solid #a2f3ff; background: #f3682d; margin: 22px 0 0 17px; border-radius: 37px; -webkit-border-radius: 37px; -o-border-radius: 37px; -moz-border-radius: 37px; text-shadow: 3px 2px #d4481b; -webkit-text-shadow: 3px 2px #d4481b; -o-text-shadow: 3px 2px #d4481b; -moz-text-shadow: 3px 2px #d4481b; font-family: 微软雅黑; } #search{ animation: breathe 1.1s infinite; } @keyframes breathe{ 0%{ transform: scale(.99); } 50%{ transform: scale(1.03); } 100%{ transform: scale(.99); } } </style> </head> <body> <input id="search" name="cx" type="button" value="开始游戏" class="btn search"> </body> </html>
推荐学习:CSS3视频教程
以上是一招教你使用css3製作按鈕加入動態效果(程式碼分享)的詳細內容。更多資訊請關注PHP中文網其他相關文章!