<!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>
相关分类