css实现发光按钮呼吸灯动画效果代码
代码语言:html
所属分类:动画
代码描述:css实现发光按钮呼吸灯动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> .button { 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; } /* 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.........完整代码请登录后点击上方下载按钮下载查看
网友评论0