blob: 8a9042b9bb4b2c0f8ed7ebd782c032a0193882cf [file] [log] [blame]
<!DOCTYPE html>
<style>
#target {
position: relative;
height: 50px;
width: 50px;
background-color: blue;
animation: slide-right 1s linear forwards;
}
@keyframes slide-right {
from { left: 0px; }
to { left: 10000px; }
}
</style>
<div id="target"></div>