html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Car Animation </title>
<!-- <link rel="stylesheet" href="style.css"> -->
</head>
<body>
<img src="https://www.dropbox.com/s/kcklo9e4wbh6ska/only-car.png?raw=1" height="100" alt="Only Car">
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
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
html, body {
margin: 0;
height: 100%;
}
body {
background:url(https://www.dropbox.com/s/grxzd2qmgp9tvvh/road.png?raw=1) no-repeat center/100% 400px;
}
img {
position: absolute;
top: 160px;
right: -35%;
animation-name: move;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
animation-duration: 4s;
animation-delay: .5s;
}
@keyframes move {
from { right: -35%; }
to { right: 102%; }
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run