blob: 6861c9258dead5cb7b6ec4d2942c0265775efe1a [file] [log] [blame]
<!DOCTYPE html>
<style>
#target {
background: green;
height: 100px;
width: 100px;
will-change: transform;
}
</style>
<body>
<div id="target"></div>
<script>
target.animate({translate: '100px'}, {duration: 2e10, delay: -1e10});
</script>
</body>