效果如下:
代码如下(点击可展开查看源码):
<!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> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </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>
总结
以上所述是小编给大家推荐一款酷炫闪烁的告警按钮,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!
标签:
告警按钮,按钮
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
暂无“推荐一款酷炫闪烁的告警按钮”评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新动态
2024年11月23日
2024年11月23日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]