blob: dcf2c7e1c1b04d658f713e5255e520452e77c3af [file] [log] [blame]
<!DOCTYPE html>
<style>
div {
position: absolute;
width: 100px;
height: 100px;
background: green;
animation: test 1e8s;
transform: translateY(50px);
}
@keyframes test {
to { transform: translateX(100px); }
}
</style>
<div></div>