たぼさんの部屋

いちょぼとのんびり

スマホ最適化

適用するCSSを変更します

css.js function changeCSS(orientation) { /* * htmlに設定してあるCSSのhrefを再指定することにより * 適用するcssを変更します。 */ var CSS = document.getElementById('MainCss'); if(orientation === 'horizontal'){ CSS.href="horizontal.css"; } …

スマホの向きを取得する

main.js function getOrientation(target){ //向きの取得 //window.orientationで取得する if(Math.abs(window.orientation) === 90){ target.innerHTML = "よこ"; }else{ target.innerHTML = "たて"; } } function init(){ var target = document.getElemen…

アドレスバーを自動で隠す

main.js function hideAddressBar() { if (document.documentElement.scrollHeight < window.outerHeight / window.devicePixelRatio) { document.documentElement.style.height = (window.outerHeight / window.devicePixelRatio) + 'px'; } window.scrollT…