html
html
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div class="attempt">TEST</div>
</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
body {
}
/* straight to the right, down, left, then up.
*/
.attempt{
animation: exp 5s infinite;
}
@keyframes exp{
20%{
transform: translateX(200px)
}
40%{
transform: translateY(200px)
}
60%{
translateX(-200px;)
}
80%{
transform: translateY(-200px)
}
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run