this.addListener('appear', function (e) { // 현재 로딩이 완료되어 나타난 상태

});


this.addListener('mousewheel', function (e) { // 마우스 휠 이벤트

    console.log(e.getWheelDelta());  // + 휠업, - 휠다운

});


마우스

mousemove : 1,

      mouseover : 1,

      mouseout : 1,

      mousedown : 1,

      mouseup : 1,

      click : 1,

      dblclick : 1,

      contextmenu : 1,

      mousewheel : 1


// 찾은 핸들러 이벤트 

문서 

"complete" : 완료

"loaded" : 

"success":

"fail":

"error":

"readystatechange":


Animation

"animate" : statics.animate,

"fadeIn" : statics.fadeIn,

"fadeOut" : statics.fadeOut,

"play" : statics.play,

"pause" : statics.pause,

"stop" : statics.stop,

"isEnded" : statics.isEnded,

"isPlaying" : statics.isPlaying


"setup" : 시작 "finish" : 끝


IFrame, Script

"uninitialized" : 1,

"loading"       : 2,

"loaded"        : 2,

"interactive"   : 3,

"complete"      : 4


프로그래스바

"complete" : 완료

"change" : 변경

+ Recent posts