码迷,mamicode.com
首页 > 其他好文 > 详细

线条围绕 div 中心转圈 效果

时间:2016-09-26 18:07:44      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

1. 用到知识:

CSS:animate  ,clipe

2.原理: 用clip 属性 将div  切边 ,会出现 切边的动态效果,然后内部的div 遮住外部的div  ,流出一部分 作为边;

就是旋转的效果;

 

代码如下:

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus®">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>边缘线条转圈效果</title>
 </head>
 <style>
	#f1{width:500px;height:500px;position:absolute;background:red;}
	@keyframes clips{
		0%{
			clip:rect(0px 220px 2px 10px)
		}
		25%{
			clip:rect(0px 2px 220px 10px)
		}
		50%{
			clip:rect(218px 220px 210px 10px)
		}
		70%{
			clip:rect(0px 220px 220px 210px)
		}
		100%{
			clip:rect(0px 220px 2px 10px)
		}
	}
	#f1{animation:clips  8s linear infinite
}
 </style>
 <body>
  <div id="f1">


  </div>
 </body>
</html>

  

 

线条围绕 div 中心转圈 效果

标签:

原文地址:http://www.cnblogs.com/vali/p/5909950.html

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