Menu



Manage

파일 목록
Study_Web > 이후/ex10-5.html Lines 24 | 651 바이트
다운로드

                        <!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <h3>윈도우의 크기 조절</h3>
    <hr>
    <button onclick="window.moveBy(-10,0)">left</button>
    <button onclick="window.moveBy(10,0)">right</button>
    <button onclick="self.moveBy(0,-10)">up</button>
    <button onclick="moveBy(0,10)">down</button>
    <button onclick="resizeBy(10,10)">+</button>
    <button onclick="resizeBy(-10,-10)">-</button>


</body>

</html>