Created
August 2, 2019 12:00
-
-
Save cristinecula/274f5c2da0b82f0f5022df793eeced12 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/wubifok
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> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
Native web animations | |
<script> | |
const animation = document.body.animate([{opacity: 0}, {opacity: 1}], 500) | |
animation.onfinish = event => { | |
console.log('onfinish', animation.playState) | |
} | |
animation.oncancel = event => { | |
console.log('oncancel', animation.playState) | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Console output:
"onfinish" "finished"