码迷,mamicode.com
首页 > Web开发 > 详细

CSS3 外发光 渐变色

时间:2016-01-14 12:15:22      阅读:328      评论:0      收藏:0      [点我收藏+]

标签:

渐变色
--线性渐变 linear-gradient
#bg {
    width: 100%;
    background: -webkit-linear-gradient(#9f1c65, #d89068,#7d1467,#ffe66c); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(#9f1c65, #d89068,#7d1467,#ffe66c); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(#9f1c65, #d89068,#7d1467,#ffe66c); /* Firefox 3.6 - 15 */
    background: linear-gradient(#9f1c65, #d89068,#7d1467,#ffe66c); /* 标准的语法 */
}

外发光

box-shadow
@-webkit-keyframes
@-webkit-keyframes shineRed {
    from {
        -webkit-box-shadow: 0 0 5px #bbb;
    }
    50% {
        -webkit-box-shadow: 0 0 10px red;
    }
    to {
        -webkit-box-shadow: 0 0 5px #bbb;
    }
}
.shine_red {
    -webkit-animation-name: shineRed;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
}


<div class="shine_red" style="width:500px; height:100px; margin:0 auto"></div>

 

CSS3 外发光 渐变色

标签:

原文地址:http://www.cnblogs.com/zyjzz/p/5129601.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!