<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>图片循环旋转</title>
<style> @-webkit-keyframes fadeIn{
from {opacity: 0;}
to {opacity: 1;}
}
.FadeIn{
opacity: 1;
-webkit-animation: fadeIn 3s;
}
@-webkit-keyframes rotation{
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
.Rotation{
-webkit-transform: rotate(360deg);
animation: rotation 3s linear infinite;
-moz-animation: rotation 3s linear infinite;
-webkit-animation: rotation 3s linear infinite;
-o-animation: rotation 3s linear infinite;
}
img{
border-radius:100%;
}
</style>
</head>
<body> <div class="ta_c FadeIn">
<img class="Rotation img" src="http://images2015.cnblogs.com/blog/546882/201707/546882-20170718230517411-1727231843.png" width="500" height="500"/>
</div> </body>
</html>

最新文章

  1. Oracle查询数据库中的所有表
  2. iOS多线程学习及总结
  3. java.sql.SQLException: Incorrect string value:
  4. [PHP] - Laravel - 修改laravel_session的cookie名称
  5. wampserver You don&#39;t have permission to access / on this server. 解决 方法(转,正好碰到这样的事情了就转下来)
  6. Lex和Yacc入门
  7. vm克隆虚拟机网络配置
  8. Axis2的下载和安装
  9. ubuntun pptpd
  10. linux shell 命令学习(3) split - split a file into pieces
  11. MapInfo格式转arggis格式
  12. angularJS快速入门
  13. Visual Studio 启动加速
  14. 解决angular 与django的冲突
  15. Java中常见的几种类型转换
  16. MyBaits 错误分析
  17. ionic,Angular 开发实践
  18. angular或者js如何确定选中ul中的哪几个li
  19. python实现散列表的直接寻址法
  20. 英语知识积累-D01-body+animal

热门文章

  1. Others-大数据平台Lambda架构浅析(全量计算+增量计算)
  2. Haskell语言学习笔记(75)Conduit
  3. 知识点6: v-for列表循环
  4. JS封装Cookie
  5. 2.Servlet基础.md
  6. 为tomcat配置项目必须的引擎文件
  7. HTML+CSS基础课程二
  8. Mysql字段类型与合理选择
  9. SQL server 2012完全删除
  10. linux 内核移植