13 lines
183 B
HTML
13 lines
183 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
div {
|
|
background: green;
|
|
width: 100px;
|
|
height: 100px;
|
|
animation: anim 100s 100s;
|
|
transform: translateX(100px);
|
|
}
|
|
</style>
|
|
<div></div>
|
|
</html>
|