たぼさんの部屋

いちょぼとのんびり

2013-12-01から1ヶ月間の記事一覧

Uncompressed: jquery.mobile-1.3.2.js (useful for debugging)

/*! * jQuery Mobile 1.3.2 * Git HEAD hash: 528cf0e96940644ea644096bfeb913ed920ffaef <> Date: Fri Jul 19 2013 22:17:57 UTC * http://jquerymobile.com * * Copyright 2010, 2013 jQuery Foundation, Inc. and other contributors * Released under th…

適用する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…