프로그래밍/tip
[tip] GreenShock ScrollToPlugin
august5pm
2015. 2. 6. 19:01
TweenLite로 스크롤 애니메이션 사용하는 방법
플러그인 경로 : https://greensock.com/ScrollToPlugin
1. js 임베드
<script type="text/javascript" src="js/vendor/TweenLite.min.js"></script> <script type="text/javascript" src="js/vendor/plugin/CSSPlugin.min.js"></script> <script type="text/javascript" src="js/vendor/plugin/ScrollToPlugin.min.js"></script>
2. 사용방법
//scroll to 400 pixels down from the top TweenLite.to(window, 2, {scrollTo:{y:400}, ease:Power2.easeOut});