-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhello5.html
38 lines (36 loc) · 1.09 KB
/
hello5.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
31
32
33
34
35
36
37
38
<!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>hello5.html</title>
<style>
#kimImg{
/* margin-left 가 변할때 0.4 초 동안 변하도록 설정 */
transition: margin-left 0.4s ease-out;
}
</style>
</head>
<body>
<h1>javascript 테스트</h1>
<button onclick="move()">움직이기</button>
<br>
<img id="kimImg" src="images/kim1.png">
<br>
<p id="info">0</p>
<script>
/*
움직이기 버튼을 누를때 마다 위의 이미지를 우측으로 100px 씩 이동하도록
프로그래밍 해 보세요
hint : document.querySelector("#kimImg").style.marginLeft="숫자px";
*/
let mLeft=0;
function move(){
mLeft=mLeft+100;
document.querySelector("#kimImg").style.marginLeft=mLeft+"px";
document.querySelector("#info").innerText=mLeft;
}
</script>
</body>
</html>