클릭 할 때마다 div 는 90 ° 회전 합 니 다.

6359 단어 js
rotate Times 로 회전 횟수 를 기록 하여 서로 다른 각 도 를 회전 시 키 고 간단 하 며 코드 를 직접 올 립 니 다.
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>90°</title>
	<style>
		#box{
     
			width: 150px;
			height: 120px;
			background: red;
			margin: 100px;
			border-bottom: 2px solid black;
		}
	</style>
</head>
<body>
	<div id = "box"></div>
	<script>
		var box = document.getElementById("box");
		var rotateTimes = 1;
		
		box.onclick = function(){
     
			box.style.webkitTransform = 'rotate('+90*rotateTimes+'deg)';
            box.style.mozTransform = 'rotate('+90*rotateTimes+'deg)';
            box.style.msTransform = 'rotate('+90*rotateTimes+'deg)';
            box.style.oTransform = 'rotate('+90*rotateTimes+'deg)';
            box.style.transform = 'rotate('+90*rotateTimes+'deg)';
			
			console.log("finished");
			rotateTimes++;
		}
	</script>
</body>
</html>

좋은 웹페이지 즐겨찾기