14
18

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AndroidおよびiOSでWebApp化するためのメタタグ・リンクなど

Last updated at Posted at 2014-02-27
<!-- WebAppモード -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- アイコン -->
<link rel="shortcut icon" sizes="196x196" href="icon-196x196.png">
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
//フルスクリーン
navigator.standalone = navigator.standalone || (screen.height-document.documentElement.clientHeight<40)

参考:
[Home screen web apps for Android thanks to Chrome 31+ | Breaking the Mobile Web]
(http://www.mobilexweb.com/blog/home-screen-web-apps-android-chrome-31)
[Add to Homescreen - Google Chrome Mobile — Google Developers]
(https://developers.google.com/chrome/mobile/docs/installtohomescreen?hl=ja)
[Chrome Beta for Android has full screen browsing very well hidden]
(http://phandroid.com/2013/01/26/chrome-beta-full-screen/)
[APIに新機能追加:Google、「Chrome 31」のβ版公開 - @IT] (http://www.atmarkit.co.jp/ait/articles/1310/04/news103.html)

14
18
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
18

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?