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 Butt.........完整代码请登录后点击上方下载按钮下载查看

网友评论0