-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhello2.html
30 lines (28 loc) · 900 Bytes
/
hello2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!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>hello2.html</title>
</head>
<body>
<button onclick="move3()" >오른쪽으로 움직이기</button>
<br>
<img class="my-img" id="kimImg" src="images/kim1.png">
<br>
<img class="my-img" id="rabbitImg" src="images/rabbit_1.png">
<script>
function move(){
document.querySelector("#kimImg").style.marginLeft="100px";
}
function move2(){
document.querySelector(".my-img").style.marginLeft="100px";
}
function move3(){
document.querySelector("#kimImg").style.marginLeft="100px";
document.querySelector("#rabbitImg").style.marginLeft="100px";
}
</script>
</body>
</html>