首页 > 其他 > 详细

径向渐变旋转的圆球

时间:2016-01-13 17:33:31      阅读:94      评论:0      收藏:0      [点我收藏+]

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>旋转的球体</title>
<style type="text/css">
/* 动画定义 */

@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}


/* 旋转,渐变色 */
#advanced {
width: 200px;
height: 200px;
background-image: -moz-radial-gradient(45px 45px 45deg, circle cover, yellow 0%, orange 100%, red 95%);
background-image: -webkit-radial-gradient(45px 45px, circle cover, yellow, orange);
background-image: radial-gradient(45px 45px 45deg, circle cover, yellow 0%, orange 100%, red 95%);
animation:spin 2s cubic-bezier(0.9,1,0.2,1) infinite;
-webkit-animation:spin 2s cubic-bezier(0.9,1,0.2,1) infinite;
border-radius:50%;
}
</style>
</head>

<body>
<div id="advanced"></div>
</body>
</html>

径向渐变旋转的圆球

原文:http://www.cnblogs.com/sunsie/p/5127554.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!