1
3

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 3 years have passed since last update.

webアプリをネイティブアプリっぽく表示する

Posted at

今度自社でwebアプリを作成することになったのですが、
どうせならネイティブアプリっぽくできたらなって思って調べたらいい方法があったので覚書として書きます。

やり方は至って簡単で、以下のmetaタグをhead内に追加するだけです。

<meta name="apple-mobile-web-app-capable" content="yes" />

ちなみにこのmetaタグを書くとURLバーを非表示にするだけですが、
気持ち見た目をネイティブアプリっぽく表示することができます。

またiphoneでショートカットをホーム画面上に追加した時のアイコンの設定は以下でできます。

<link rel="apple-touch-icon" href="">

href=""にはアイコン画像のURLを入れてください。
サイズはまあ180x180pxあれば十分かと。

1
3
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
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?