W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
動畫幀計劃程序
const animationFrame: any;
執(zhí)行任務時,window.requestAnimationFrame
會開除
當animationFrame
延遲使用調度程序時,它將退回到async
調度程序的行為。
無延遲,animationFrame
調度可以用來創(chuàng)建流暢的瀏覽器的動畫。它確保計劃的任務將在下一個瀏覽器內容重新繪制之前發(fā)生,從而盡可能高效地執(zhí)行動畫。
安排div高度動畫
// html: <div style="background: #0ff;"></div>
import { animationFrameScheduler } from 'rxjs';
const div = document.querySelector('div');
animationFrameScheduler.schedule(function(height) {
div.style.height = height + "px";
this.schedule(height + 1); // `this` references currently executing Action,
// which we reschedule with new state
}, 0, 0);
// You will see a div element growing in height
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: