This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
The MIT License (MIT) | |
Copyright (c) 2014 Kazuya Nagao (wildwest-service.com) | |
Included: [github-markdown-css] | |
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com) | |
以下に定める条件に従い、本ソフトウェアおよび関連文書のファイル(以下「ソフトウェア」)の複製を取得するすべての人に対し、 | |
ソフトウェアを無制限に扱うことを無償で許可します。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).bind("mobileinit", function() { | |
//ページ遷移アニメーションの標準設定 face/pop/flip/turn/flow/slidefade/slide/slideup/slidedown/none | |
$.mobile.defaultPageTransition = "none"; | |
//ページローディングメッセージの設定 | |
$.mobile.loader.prototype.options.theme = "a"; //ローディング表示のテーマ a/b/c/d/e | |
$.mobile.loader.prototype.options.textonly = true; //スピナーを表示させるか、テキストだけ表示にするか true/false | |
$.mobile.loader.prototype.options.textVisible = true; //ローディング中にテキストを表示させるか true/false | |
$.mobile.loader.prototype.options.text = "読み込み中"; //ローディング中に表示させるテキスト |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css" /> | |
<script src="http://code.jquery.com/jquery-1.7.0.min.js"></script> | |
<script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script> | |
<title>jQueryMobileによるLightbox</title> | |
</head> | |
<body> |