Jquery & Mobile
[JqueryMobile] - Jquery Mobile 화면 강제 회전 소스
Vivara
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)"
});
});
반응형