-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path125. MoveTheImage.html
59 lines (57 loc) · 1.75 KB
/
125. MoveTheImage.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MoveTheImage</title>
<style>
img {
height: 100px;
margin-left: 0px;
margin-top: 0px;
transition-duration: 0.05s;
transition-delay: 0s;
}
</style>
</head>
<body>
<img
id="img"
src="https://pwskills.com/images/PWSkills-main.png"
alt="PWSkillsLogo"
/>
<script>
let img = document.querySelector("#img");
let x = 0;
let y = 0;
document.addEventListener("keydown", (e) => {
switch (e.keyCode) {
case 37:
if (x > 0) {
x -= 10;
img.style.marginLeft = `${x}px`;
}
break;
case 38:
if (y > 0) {
y -= 10;
img.style.marginTop = `${y}px`;
}
break;
case 39:
if (x < screen.width) {
x += 10;
img.style.marginLeft = `${x}px`;
}
break;
case 40:
if (y < screen.height) {
y += 10;
img.style.marginTop = `${y}px`;
}
break;
}
});
</script>
</body>
</html>