본문 바로가기

 Etc/Study

액션스크립트 2.0 슬라이드

/*설정*/ 

var sp = 0.3
 var tx = 0
 _root.slide.p1._x = 0
 _root.slide.p2._x = 500
 _root.slide.p3._x = 1000
 _root.slide.p4._x = 1500
 _root.slide.p5._x = 2000

 

/*슬라이드*/

_root.slide.onEnterFrame = function(){
 this._x += sp * (tx - this._x)
 }

_root.bt1.onRollOver = function(){
 tx = 0
 }

_root.bt2.onRollOver = function(){
 tx = -500
 }
 
_root.bt3.onRollOver = function(){
 tx = -1000
}

_root.bt4.onRollOver = function(){
 tx = -1500
}

_root.bt5.onRollOver = function(){
 tx = -2000
}

 

/*링크*/

_root.slide.p1.onRelease = function(){
 getURL("http://www.naver.com/")
}

 

※인스턴스네임 설정은 필수!

' Etc > Study' 카테고리의 다른 글

배경 투명도 CSS  (0) 2018.11.22
Free Source Site  (0) 2012.09.09
파비콘 만들기  (0) 2011.11.27
마우스 우클릭 방지하기  (0) 2011.11.25
슬라이드쇼 자바스크립트  (0) 2011.11.24