'화면 강제 회전'에 해당되는 글 1건

  1. 2011.09.19 [JqueryMobile] - Jquery Mobile 화면 강제 회전 소스

[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)"     
});
});
반응형
: