Menu



Manage

파일 목록
Study_Web > 이후/practice8-7.html Lines 23 | 483 바이트
다운로드

                        <!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <title>transform:rotate()</title>
    <script>
        var n = 90;
        function rotate(obj) {
            obj.style.transform = "rotate(" + n + "deg)";
            n += 90;
            n %= 360;
        }
    </script>
</head>

<body>
    <h3>클릭시 90도 회전</h3>
    <hr>
    <img src="media/spade-A.jpg" width="100" height="100" alt="animation" onclick="rotate(this)">
</body>

</html>