blob: 9c161fe0474529e7350c264542d54d883fc2ff24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html>
<style>
div {
background: green;
width: 100px;
height: 100px;
animation: anim 100s 100s;
transform: translateX(100px);
}
</style>
<div></div>
</html>
|