开发者

Startup screen on iPad Webapp

开发者 https://www.devze.com 2023-02-06 17:03 出处:网络
I开发者_运维百科\'m developing an iPad Webapp and I\'ve a problem with the startup screen. I have read that the image would be a png file with a resolution of 1004*768px in portrait mod. That\'s the c

I开发者_运维百科'm developing an iPad Webapp and I've a problem with the startup screen. I have read that the image would be a png file with a resolution of 1004*768px in portrait mod. That's the case for me. The declaration of this image on startup is normally written like this : link href="startup.png" rel="apple-touch-startup-image" but it doesn't work fine...

Can somebody help me please ?


Just figured out how to do this, and it's similar to the apple-touch-icon setup.

Here's my example:

<link rel="apple-touch-startup-image" href="iPhonePortrait.png" />
<link rel="apple-touch-startup-image" sizes="768x1004" href="iPadPortait.png" />

Just set the "sizes" attribute to the specific width and height and mobile Safari should match it up correctly.

0

精彩评论

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