W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
動(dòng)畫幀計(jì)劃程序
const animationFrame: any;
執(zhí)行任務(wù)時(shí),window.requestAnimationFrame
會(huì)開除
當(dāng)animationFrame
延遲使用調(diào)度程序時(shí),它將退回到async
調(diào)度程序的行為。
無延遲,animationFrame
調(diào)度可以用來創(chuàng)建流暢的瀏覽器的動(dòng)畫。它確保計(jì)劃的任務(wù)將在下一個(gè)瀏覽器內(nèi)容重新繪制之前發(fā)生,從而盡可能高效地執(zhí)行動(dòng)畫。
安排div高度動(dòng)畫
// 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號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: