html
html
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div id="mover" align="center">hello world</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
#mover{
animation:move ease-in-out 500ms 500ms alternate infinite ;
}
/*actual animation*/
@keyframes move{
0%{
transform:translateX (-20px);
}
100%{
transform:translateX(20px)
}
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run