开发者

Is is possible to create an icon for web app?

开发者 https://www.devze.com 2023-02-21 22:58 出处:网络
I am new to web apps. I read just about everyting of Apple\'s website about creating web apps for iphone but could not find any info on how do you create an icon that would be placed on user\'s phone

I am new to web apps. I read just about everyting of Apple's website about creating web apps for iphone but could not find any info on how do you create an icon that would be placed on user's phone that would launch the app.

I mean, is it possible t开发者_运维百科o have an icon added to the iphone/ipad for a web app that would launch your web app the same was it launches the regular app?


See the Apple documentation on web apps,

Basicaly use:

<link rel="apple-touch-icon" href="touch-icon-iphone.png" />

(put it in your <head>)

If you don't want the shiny effect added to your icon use:

<link rel="apple-touch-icon-precomposed" href="touch-icon-iphone.png" />
0

精彩评论

暂无评论...
验证码 换一张
取 消