blob: 2c94473fbb9584f1af13625e3c11a1008af2a6c1 [file] [log] [blame]
<!DOCTYPE html>
<style>
.box {
height: 100px;
width: 100px;
background-color: blue;
}
#box {
animation-name: anim;
animation-duration: 1s;
animation-delay: -0.5s;
animation-play-state: paused;
animation-timing-function: linear;
}
@-webkit-keyframes anim {
from { transform: rotate(0deg) translate(-100px, 0); }
to { transform: rotate(180deg) translate(300px, 0); }
}
</style>
<div class="box" id="box"></div>