[JqueryMobile] - Jquery Mobile 화면 강제 회전 소스
Jquery & Mobile 2011. 9. 19. 13:53반응형
$(window).bind("orientationchange", function(){
var orientation = window.orientation;
var new_orientation = (orientation) ? 0 : 90 + orientation;
$('body').css({
"-webkit-transform": "rotate(" + new_orientation + "deg)"
});
});
반응형
'Jquery & Mobile' 카테고리의 다른 글
[Jquery] - 달력 소스 (Jquery Calendar) (0) | 2011.10.06 |
---|---|
[JqueryMobile] - Select 참조문서 (1) | 2011.09.19 |
[Jquery Mobile] - 아이폰 화면 세로 움직임 방지태그 (0) | 2011.09.19 |
[Mobile] - 모바일 Input type 속성 (0) | 2011.09.19 |
[Mobile] - 모바일웹 Href 태그속성들 (0) | 2011.09.19 |