2019-07-26 13:32:43 +08:00
|
|
|
export const requestAnimationFrame = window.requestAnimationFrame ||
|
|
|
|
window.webkitRequestAnimationFrame ||
|
|
|
|
window.mozRequestAnimationFrame ||
|
|
|
|
window.oRequestAnimationFrame ||
|
|
|
|
window.msRequestAnimationFrame ||
|
2021-03-22 18:40:29 +08:00
|
|
|
function (callback) { callback.timer = window.setTimeout(callback, 1000 / 60); };
|
2019-07-26 13:32:43 +08:00
|
|
|
|
|
|
|
export const cancelRequestAnimFrame = window.cancelAnimationFrame ||
|
|
|
|
window.webkitCancelRequestAnimationFrame ||
|
|
|
|
window.mozCancelRequestAnimationFrame ||
|
|
|
|
window.oCancelRequestAnimationFrame ||
|
|
|
|
window.msCancelRequestAnimationFrame ||
|
2021-03-22 18:40:29 +08:00
|
|
|
function (callback) { window.clearTimeout(callback.timer); };
|