blob: 9c1c977a6ae8e9e69b84c37d42d415309fd9493b [file] [log] [blame]
<!doctype html>
<html>
<head>
<style>
@keyframes move {
from {
transform: translate(-200px, 0);
}
to {
transform: translate(200px, 0);
}
}
div {
height: 200px;
width: 200px;
animation-duration: 1.5s;
animation-iteration-count: infinite;
animation-name: move;
background: black;
}
</style>
</head>
<body>
<div></div>
</body>
</html>