iPhone/Androidã§ã¯JavaScriptã®window.orientation;ãåå¾ã§ããã jQueryã¹ã¿ã¤ã«ã§ã®è¨è¿°æ¹æ³ãç¨ããã¨ãä¸è¨ã®ãããªå¤§å¤ã·ã³ãã«ãªã³ã¼ãã§ããã¤ã¹ã®ç¸¦æã¡ï¼portraitï¼ã¨æ¨ªæã¡(landscape)ã§cssã®åãæ¿ããå®è£ å¯è½ã§ããã function switchOrientation(){ var orientation = window.orientation; if(orientation == 0){ $("body").addClass("portrait"); $("body").removeClass("landscape"); }else{ $("body").addClass("landscape"); $("body").removeClass("portrait"); } } $(document).ready(
{{#tags}}- {{label}}
{{/tags}}