麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 網站 > 網頁設計 > 正文

推薦一款酷炫閃爍的告警按鈕

2024-08-30 08:36:09
字體:
來源:轉載
供稿:網友

效果如下:

代碼如下(點擊可展開查看源碼):

<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>告警按鈕</title><style type="text/css">/* Place all stylesheet code here */body { background: #333; text-shadow: 0 1px 1px rgba(0,0,0,.5); }@-webkit-keyframes bigAssButtonPulse {  from { background-color: #1e6a0f; -webkit-box-shadow: 0 0 25px #333; }  50% { background-color: #39ba1f; -webkit-box-shadow: 0 0 75px #39ba1f; }  to { background-color: #1e6a0f; -webkit-box-shadow: 0 0 25px #333; }}@-webkit-keyframes greenPulse {  from { background-color: #1e6a0f; -webkit-box-shadow: 0 0 9px #333; }  50% { background-color: #39ba1f; -webkit-box-shadow: 0 0 27px #39ba1f; }  to { background-color: #1e6a0f; -webkit-box-shadow: 0 0 9px #333; }}@-webkit-keyframes bluePulse {  from { background-color: #036075; -webkit-box-shadow: 0 0 9px #333; }  50% { background-color: #2daebf; -webkit-box-shadow: 0 0 27px #2daebf; }  to { background-color: #036075; -webkit-box-shadow: 0 0 9px #333; }}@-webkit-keyframes redPulse {  from { background-color: #8c2305; -webkit-box-shadow: 0 0 9px #333; }  50% { background-color: #e33100; -webkit-box-shadow: 0 0 27px #e33100; }  to { background-color: #8c2305; -webkit-box-shadow: 0 0 9px #333; }}@-webkit-keyframes magentaPulse {  from { background-color: #470123; -webkit-box-shadow: 0 0 9px #333; }  50% { background-color: #a9014b; -webkit-box-shadow: 0 0 27px #a9014b; }  to { background-color: #470123; -webkit-box-shadow: 0 0 9px #333; }}@-webkit-keyframes orangePulse {  from { background-color: #b84c04; -webkit-box-shadow: 0 0 9px #333; }  50% { background-color: #ff5c00; -webkit-box-shadow: 0 0 27px #ff5c00; }  to { background-color: #b84c04; -webkit-box-shadow: 0 0 9px #333; }}@-webkit-keyframes orangellowPulse {  from { background-color: #bd5000; -webkit-box-shadow: 0 0 9px #333; }  50% { background-color: #ffb515; -webkit-box-shadow: 0 0 27px #ffb515; }  to { background-color: #bd5000; -webkit-box-shadow: 0 0 9px #333; }}a.button {    -webkit-animation-duration: 2s;    -webkit-animation-iteration-count: infinite; }.green.button { -webkit-animation-name: greenPulse;animation-name: greenPulse; -webkit-animation-duration: 2s;animation-duration: 2s; }.blue.button { -webkit-animation-name: bluePulse; -webkit-animation-duration: 2s; }.red.button { -webkit-animation-name: redPulse; -webkit-animation-duration: 2s; }.magenta.button { -webkit-animation-name: magentaPulse; -webkit-animation-duration: 2s; }.orange.button { -webkit-animation-name: orangePulse; -webkit-animation-duration: 2s; }.orangellow.button { -webkit-animation-name: orangellowPulse; -webkit-animation-duration: 2s; }.wall-of-buttons { width: 100%; height: 500px; text-align: center; }.wall-of-buttons a.button { display: inline-block; margin: 0 30px 30px 0; } /*   playground.css   */.button { background: #222 url(overlay-button.png) repeat-x 0 0; display: inline-block; padding: 5px 15px 6px; color: #fff !important; font-size: 13px; font-weight: bold; line-height: 1; text-decoration: none; -moz-border-radius: 5px; -webkit-border-radius: 5px; -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.25); -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.25); text-shadow: 0 -1px 1px rgba(0,0,0,0.25); border-bottom: 1px solid rgba(0,0,0,0.25); position: relative; cursor: pointer; overflow: visible; width: auto; }button::-moz-focus-inner { border: 0; padding: 0; }.button:hover { background-color: #111; color: #fff; }.button:active { -webkit-transform: translateY(1px); -moz-transform: translateY(1px); }/* Small Buttons */.small.button { font-size: 11px; }/* Large Buttons */.large.button { font-size: 14px; padding: 8px 19px 9px; }/* Colors for our beloved buttons */.green.button { background-color: #91bd09; }.green.button:hover { background-color: #749a02; }.blue.button { background-color: #2daebf; }.blue.button:hover { background-color: #007d9a; }.red.button { background-color: #e33100; }.red.button:hover { background-color: #872300; }.magenta.button{ background-color: #a9014b; }.magenta.button:hover { background-color: #630030; }.orange.button {background-color: #ff5c00;}.orange.button:hover { background-color: #d45500; }.orangellow.button { background-color: #ffb515; }.orangellow.button:hover { background-color: #fc9200; }.white.button { background-color: #fff; border: 1px solid #ccc; color: #666 !important; font-weight: normal; text-shadow: 0 1px 1px rgba(255,255,255,1); }.white.button:hover { background-color: #eee; }</style></head><body id="radioactiveButtonsPage" class="chrome windows"><div class="wall-of-buttons">  <p>&nbsp;</p>  <p>&nbsp;</p>  <p>&nbsp;</p>  <p>&nbsp;</p>  <p>&nbsp;</p>  <p>&nbsp;</p>    <p><a class="large green button">正常</a>      <a class="large blue button">運行</a>      <a class="large red button">嚴重</a>      <br />            <a class="large orange button">主要</a>      <a class="large orangellow button">次要</a>      <br />  </p></div></body></html>

總結

以上所述是小編給大家推薦一款酷炫閃爍的告警按鈕,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對武林網網站的支持!
如果你覺得本文對你有幫助,歡迎轉載,煩請注明出處,謝謝!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 国产日韩线路一线路二 | 国产一级淫片a级aaa | 国产一区二区三区高清 | 91成人免费看片 | 国产精品久久99精品毛片三a | 中文字幕在线观看视频一区 | 日本欧美一区二区 | 国产电影精品久久 | 天天草天天爱 | 男女污视频在线观看 | 最新福利在线 | 免费放黄网站在线播放 | 国产美女视频免费 | 国产91精品久久久久久久 | 一级成人免费 | 久草成人在线观看 | 欧美成人精品不卡视频在线观看 | 国产精品久久久久无码av | 国产成人综合在线 | 久久久久久久久久久久久久久久久久 | 羞羞视频一区 | 精品久久久久久久久久 | 成人羞羞在线观看网站 | 成人毛片100免费观看 | 久久亚洲精品久久国产一区二区 | 亚洲欧美国产高清va在线播放 | www.48xx.com| 久久久国产电影 | 中国老女人一级毛片视频 | 免费黄色大片在线观看 | 国产福利不卡一区二区三区 | www.17c亚洲蜜桃| 免费的性生活视频 | 欧美精品一区二区中文字幕 | 午夜精品影院 | 欧美三级美国一级 | 黄污污网站| 色综合一区二区 | 精品一区二区三区四区在线 | 成码无人av片在线观看网站 | 亚洲一区免费观看 |