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

虾米loop 摇头代码

时间:2016-04-13 18:26:58      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

.head{
position: absolute;
-webkit-animation: shake 1s infinite;
-webkit-transform-origin: center bottom;
}
@-webkit-keyframes shake{
0% {
-webkit-transform:rotate(-5deg);
}
50% {
-webkit-transform:rotate(5deg);
}
100% {
-webkit-transform:rotate(-5deg);
}
}

CSS3 @keyframes 用法:
http://www.w3school.com.cn/cssref/pr_keyframes.asp

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
<style>
.head{
  position: absolute;
  -webkit-animation: shake 1s infinite;
  -webkit-transform-origin: center bottom;
}
@-webkit-keyframes shake{
  0% {
    -webkit-transform:rotate(-5deg);
  }
  50% {
    -webkit-transform:rotate(5deg);
  }
  100% {
    -webkit-transform:rotate(-5deg);
  }
}}
}
</style>  
</head>
<body>
<div class="head"><img src="http://img.xiami.net/res/loop/img/avatar/head_back_girl.png" class="head_img"></div>
</body>
</html>

在线DEMO: http://jsbin.com/vaqicejapa

虾米loop 摇头代码

标签:

原文地址:http://www.cnblogs.com/zlog/p/5388070.html

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