HarmonyOS实战开发:插值器动画帧

时间:2025-04-04 12:34:03
  • //
  • export default {
  • data: {
  • timer: null,
  • left: 0,
  • top: 0,
  • flag: true,
  • animation: null,
  • startTime: 0,
  • },
  • onShow() {
  • var test = this.$element("mycanvas");
  • var ctx = test.getContext("2d");
  • ();
  • (0, 0);
  • (300, 300);
  • = 5;
  • = "red";
  • ();
  • },
  • runframe() {
  • this.left = 0;
  • this.top = 0;
  • = true;
  • = requestAnimationFrame();
  • },
  • step(timestamp) {
  • if () {
  • this.left += 5;
  • this.top += 5;
  • if ( == 0) {
  • = timestamp;
  • }
  • var elapsed = timestamp - ;
  • if (elapsed < 500) {
  • ('callback step timestamp: ' + timestamp);
  • = requestAnimationFrame();
  • }
  • } else {
  • this.left -= 5;
  • this.top -= 5;
  • = requestAnimationFrame();
  • }
  • if (this.left == 250 || this.left == 0) {
  • = !
  • }
  • },
  • onDestroy() {
  • cancelAnimationFrame();
  • }
  • }