0.1.2 • Published 6 years ago

face-animation-frame v0.1.2

Weekly downloads
9
License
-
Repository
-
Last release
6 years ago

face-animation-frame

polyfill

<script src="https://unpkg.com/face-animation-frame"></script>
<script>
var some = requestAnimationFrame(function () {
    console.log("do something")
})
cancelAnimationFrame(some)
</script>

npm

require('face-animation-frame')
var some = requestAnimationFrame(function () {
    console.log("do something")
})
cancelAnimationFrame(some)

fucking-weapp

🖕 weapp

var animationFrame = require('face-animation-frame')
var some = animationFrame.request(function () {
    console.log("do something")
})
animationFrame.cancel(some)