blob: 51690f846a662d01238f6f83ca8efb269d7b9c54 [file] [log] [blame]
<!DOCTYPE html>
<style>
div {
position: absolute;
width: 100px;
height: 100px;
}
#expectation {
background: red;
transform: translate(50px, 50px);
}
</style>
<div id="expectation"></div>
<script>
var target = document.createElement('div');
target.style.background = 'green';
target.animate([
{transform: "translate(50px, 50px)"},
{transform: "translate(50px, 50px)"},
], {
duration: 1000,
iterations: Infinity,
});
document.body.appendChild(target);
</script>