Namespace: rotate

eg.rotate

Tiny custom rotate event binder.

NOTE:

  • It works for mobile environment only.
  • For non-mobile environment, every methods will return 'false'.

참고:

  • 모바일 환경에서만 동작 합니다.
  • 비모바일 환경에서는 모든 메서드들은 'false'를 반환합니다.

Example

var handler = function(e, info){
info.isVertical;
}
// bind
eg.rotate.on(handler);

// unbind
eg.rotate.off(handler);

// unbind all event attached (call without listener param)
eg.rotate.off();

Members

staticeg.rotate.VERSIONString

Version info string

버전정보 문자열

Example

eg.rotate.VERSION; // ex) 2.2.0

Methods

staticeg.rotate.isVertical(){Boolean}

Get device is in vertical mode

화면이 수직 방향인지 여부

Returns:
Type Description
Boolean
The orientation of the device (true: portrait, false: landscape)

기기의 화면 방향(true: 수직 방향, false: 수평 방향)

Example

eg.rotate.isVertical(); // Check if device is in portrait mode

staticeg.rotate.off(listener)

Unbind rotate event
Without param, will unbind all binded listeners

rotate 이벤트 바인딩 해제. 파라미터 없이 호출되는 경우, 바인딩된 모든 이벤트를 해제한다.

  • listener optional
    Type: function

    listener function

    이벤트 핸들러 함수

staticeg.rotate.on(listener)

Bind rotate event

rotate 이벤트 바인딩

  • listener
    Type: function

    listener function

    이벤트 핸들러 함수

comments powered by Disqus