animation-chain
Version:
Animation Chain is a chaining library which utilizes the browser's `requestAnimationFrame` function in place of the usual `setTimeout`. This results in a much more accurate representation of time passed based on a delta time calculation. This can be usefu
15 lines (14 loc) • 317 B
HTML
<html>
<head>
<title>Examples!</title>
</head>
<body>
<h3>Replace setTimeout</h3>
<a href="./set-timeout-replace/">Link</a>
<h3>Animation Chaining</h3>
<a href="./animation-chaining/">Link</a>
<h3>Animation + setTimeout</h3>
<a href="./animation-timeout-chain/">Link</a>
</body>
</html>