为了账号安全,请及时绑定邮箱和手机立即绑定

html5 canvas写一个图片围绕图片中心一直旋转的代码,用translate和rotate方法

html5 canvas写一个图片围绕图片中心一直旋转的代码,用translate和rotate方法

元芳怎么了 2019-04-02 05:00:06
html5 canvas写一个图片围绕图片中心一直旋转的代码,用translate和rotate方法 
查看完整描述

4 回答

?
慕森王

TA贡献1777条经验 获得超3个赞

你只要将div换成img就行了
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
div{
width: 200px;
height: 200px;
background: yellow;
animation:myfirst 5s linear 2s infinite alternate;
-webkit-animation:myfirst 5s linear 0s infinite normal;
-moz-animation: myfirst 5s linear 0s infinite normal;
-o-animation: myfirst 5s linear 0s infinite normal;
}

@keyframes myfirst{
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div style=""></div>
</body>
</html>


 


查看完整回答
反对 回复 2019-04-03
  • 4 回答
  • 0 关注
  • 683 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信