質問

Is there any way to make the start image delay?

I have all the resolutions and images fine

<head> 
  <link rel="apple-touch-startup-image" href="startup.png" /> 
<head> 

But the image goes very fast, I wish I could make it appear longer, like 2/3 seconds. So the user can see it better.

Edit

After the answer from @Jens Kohl, I included a small sleep with PHP on the head section, just after the startup image link :)

It's working fine now

<?php
  sleep(2); //wait 2 seconds
?>
役に立ちましたか?

解決

The startup image is not supposed to stall the user. It's supposed to be a placeholder to cover up the startup time.

That said, you could probably insert a wait/sleep JavaScript call inside your head-Tag.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top