-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathE1.html
More file actions
45 lines (45 loc) · 1.15 KB
/
E1.html
File metadata and controls
45 lines (45 loc) · 1.15 KB
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
<!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">
<style>
.title{
color: lightcoral;
text-align: center;
}
.circle{
position: absolute;
border-radius: 200px;
background-color: red;
border-style: solid;
height: 100px;
width: 100px;
left: 0%;
}
</style>
</head>
<body>
<h1 class="title">moveLeft Animation</h1>
<div class="content">
<div class="circle"></div>
</div>
<script>
let displacement = moveLeft();
setInterval(displacement, 10);
function moveLeft(){
let box = document.querySelector('.circle');
let initialX = 50;
function move(){
box.style.left = `${initialX}%`;
initialX = initialX - 0.1;
if (initialX <= 0){
initialX = 100;
}
}
return move;
}
</script>
</body>
</html>