문제

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