TweenJs를 이용한 Animation 다루기

TweenJs를 이용한 Animation 다루기 updated_at: 2023-09-12 13:26

TweenJs를 이용한 Animation 다루기

Install

npm i @tweenjs/tween.js

예제 소스

import { Component, AfterViewInit } from '@angular/core';
import TWEEN from '@tweenjs/tween.js'
@Component({
    selector: 'app-root',
    template:`<div id="box"></div>`,
    styles: ['#box { background-color: deeppink; width: 100px;height: 100px;}']
})
export class TweenJsComponent1 implements AfterViewInit{
  private tween: any;
  constructor(
  ) {
    const animate = (time: number) => {
      this.tween.update(time)
      requestAnimationFrame(animate)
    }
    requestAnimationFrame(animate)
  }

  ngAfterViewInit() {
    const box = document.getElementById('box') // Get the element we want to animate.
    const coords = {x: 0, y: 0} // Start at (0, 0)
    this.tween = new TWEEN.Tween(coords, false) // Create a new tween that modifies 'coords'.
      .to({x: 300, y: 200}, 1000) // Move to (300, 200) in 1 second.
      .easing(TWEEN.Easing.Quadratic.InOut) // Use an easing function to make the animation smooth.
      .onUpdate(() => {
        if(box) {
          box.style.setProperty('transform', 'translate(' + coords.x + 'px, ' + coords.y + 'px)')
        }
      })
      .start() // Start the tween immediately.
    }
}
평점을 남겨주세요
평점 : 5.0
총 투표수 : 1

질문 및 답글