您的位置:首页 > Web前端 > CSS

纯CSS实现的背景渐变效果代码!

2015-02-11 14:06 309 查看
body {
background-color:  firebrick;
-webkit-animation: color 5s ease-in  0s infinite;
-moz-animation: color 5s linear  0s infinite;
animation: color 5s linear  0s infinite;
}

/* by www.honglonglong.com */

@-webkit-keyframes color {
0% { background-color: cyan; }
30% { background-color: green; }
50% { background-color: yellow }
70% { background-color: orchid; }
100% { background-color: royalBlue; }
}
@-moz-keyframes color {
0% { background-color: cyan; }
30% { background-color: green; }
50% { background-color: yellow; }
70% { background-color: orchid; }
100% { background-color: royalBlue; }
}
@keyframes color {
0% { background-color: cyan; }
30% { background-color: green; }
50% { background-color: yellow; }
70% { background-color: orchid; }
100% { background-color: royalBlue; }
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: