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
-
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
-
Unbind rotate event
Without param, will unbind all binded listenersrotate 이벤트 바인딩 해제. 파라미터 없이 호출되는 경우, 바인딩된 모든 이벤트를 해제한다.
-
listener optionalType: function
listener function
이벤트 핸들러 함수
-
-
Bind rotate event
rotate 이벤트 바인딩
-
listenerType: function
listener function
이벤트 핸들러 함수
-