html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
<!-- Created by Ginfio-->
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div class="wrap">
<div class="attempt">TEST</div>
</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
/* Created by Ginfio */
html, body {
height: 100%;
}
body {
margin: 0;
}
.wrap {
width: 100%;
height: 100%;
overflow: hidden;
}
.attempt{
transform-origin: 40% 50%;
transform: translate(10vw, 25vh);
animation: exp 5s linear infinite;
}
@keyframes exp{
25% {
transform: translate(80vw, 25vh);
}
50% {
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
// Created by Ginfio
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run