Created
June 30, 2020 18:02
-
-
Save prof3ssorSt3v3/2eb051730690a810b53dac14b3a273ed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
<style> | |
html { | |
font-size: 20px; | |
font-weight: 300; | |
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, | |
Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; | |
} | |
header { | |
padding: 1rem; | |
margin: 1rem 0; | |
} | |
p { | |
margin: 1rem; | |
padding: 1rem; | |
border: 1px solid #999; | |
} | |
#box { | |
background-color: cornflowerblue; | |
width: 1rem; | |
height: 1rem; | |
} | |
</style> | |
</head> | |
<body> | |
<header> | |
<h1>Request Animation Frame</h1> | |
</header> | |
<main> | |
<p id="output"></p> | |
<p id="box"></p> | |
</main> | |
<script> | |
let output = document.getElementById('output'); | |
let box = document.getElementById('box'); | |
let number = 0; | |
let xpos = 0; | |
function paint() { | |
number++; | |
output.textContent = number; | |
if (number < 300) { | |
requestAnimationFrame(paint); | |
} | |
} | |
function move(timmy) { | |
if (timmy) { | |
let diff = timmy - number; | |
console.log('frame', diff); | |
number = timmy; //highResTimeStamp | |
} | |
xpos = xpos + 5; | |
box.style.transform = `translateX(${xpos}px)`; | |
let ww = document.body.clientWidth - 100; | |
if (xpos < ww) { | |
requestAnimationFrame(move); | |
} | |
} | |
window.requestAnimationFrame(move); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment