Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
/ nTimeline.js Public archive

GSAP - Timeline 애니메이션 컨트롤러 UI 구성을 위한 플러그인

License

Notifications You must be signed in to change notification settings

nonoll/nTimeline.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nTimeline.js

GSAP - Timeline 애니메이션 컨트롤러 UI 구성을 위한 플러그인

화면 구성 및 플러그인을 ajax로 로드 하므로 로컬에서 테스트시 크롬으로 할것

크롬 로컬 ajax 설정 참조

Demo

Demo

#Screenshot ScreenShot


ScreenShot


ScreenShot


ScreenShot


ScreenShot


ScreenShot

#Setup jquery, GSAP, nTimeline.js 를 웹페이지에 추가

<script type="text/javascript" src="./js/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="./js/TweenMax.min.js"></script>



<script type="text/javascript" src="./nTimeline/nTimeline.js"></script>

#Methods

  • window.nTimeline.init
// 실행
window.nTimeline.init( options );

// 옵션
options = {
			timeline 		GSAP - Timeline
			autorun 		Timeline Animate Autorun Flag
			repeat 			Timeline Animate Repeat Flag
			debug 			nTimeline.js Debug log Flag
			modulePath 		nTimeline.js Module Path
			align 			nTimeline.js Debbuger Display Align ( 'top', 'bottom' )
}

#Usage 1. 기본 사용

window.nTimeline.init( { timeline : GSAP Timeline } );

사용할 GSAP 의 Timeline을 옵션값에 넣어 실행

var master = new TimelineMax();
	master.add( sec1() )		// Scene
			.add( sec2() )
			.add( sec7() )
			.add( sec8() )
			.add( sec9() )
			.add( sec10() );
/*
window.nTimeline.init({ 
						timeline : master
						, align: 'top'
						});
*/

window.nTimeline.init({ 
						timeline : master
						, autorun : true
						, repeat : false
						, debug : true
						, modulePath : './nTimeline/'
						, align: 'top'
						});

2. 기본 옵션

window.nTimeline.options = {
								timeline : null
								, autorun : true
								, repeat : true
								, debug : true
								, modulePath : './nTimeline/'
								, align : 'top' // 'bottom'
							};

##History

  1. 2015.07.21 첫 버전 등록
  2. 2015.07.23 소스 및 데모 수정

About

GSAP - Timeline 애니메이션 컨트롤러 UI 구성을 위한 플러그인

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published