본문 바로가기
지식/유용한 Site

Site)개발) 연출 (Easing 시간에 따른 이동 움직임 구현 코드 사이트)

by 테샤르 2022. 9. 13.

연출 (Easing 시간에 따른 이동 움직임 구현 코드 사이트)

URL : https://easings.net/ko

 

Easing Functions Cheat Sheet

Easing functions specify the speed of animation to make the movement more natural. Real objects don’t just move at a constant speed, and do not start and stop in an instant. This page helps you choose the right easing function.

easings.net

회원가입 : 유/

반응형

클릭해서 보면 사이트의 맨 마지막의 수학함수가 중요하다.

 이 사이트는 플래쉬를 기반으로 만들어서 지금은 보이지 않지만 코드가 있어서 정리한다.

 

URL : 

http://www.gizma.com/easing/

 

Easing Equations

Math.easeInOutExpo = function (t, b, c, d) { t /= d/2; if (t < 1) return c/2 * Math.pow( 2, 10 * (t - 1) ) + b; t--; return c/2 * ( -Math.pow( 2, -10 * t) + 2 ) + b; };

www.gizma.com

 

 

반응형

댓글