codecamp

RxJS animationFrame

动画帧计划程序

const animationFrame: any;

描述

执行任务时,window.requestAnimationFrame会开除

animationFrame延迟使用调度程序时,它将退回到async调度程序的行为。

无延迟,animationFrame调度可以用来创建流畅的浏览器的动画。它确保计划的任务将在下一个浏览器内容重新绘制之前发生,从而尽可能高效地执行动画。

安排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
RxJS 行为守则
RxJS ArgumentOutOfRangeError
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

RxJS operators

RxJS fetch

RxJS testing

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }