<!DOCTYPE html><html><head><meta charset="UTF-8"><title>css3动画</title><style>#a{ width: 150px; height: 150px; background-color:red; transform: rotate(45deg); }</style></head><body> <div id="a"></div> <input type="button" value="转一圈" onclick="test()"> <script>function test(){//第一种document.getElementById("a").style.transform="rotete(0deg)"//第二种ocument.getElementById("a").style.rotate="0deg"} </script></body></html>
1 回答
- 1 回答
- 0 关注
- 1407 浏览
添加回答
举报
0/150
提交
取消