我发现自己处于一种奇怪的情况,我在iOS中为我正在构建的Web应用程序设置了Splash屏幕,并且在启动/关闭/重新启动它之后发现自己无法退出它几次。这个错误似乎也阻止了重启,我能够在iPad 3和iPad mini上重新创建这个,并且想知道其他人是否意识到这一点?
基本上这样做会导致:
我正在使用最新的iOS,目前似乎都在等待它们两者耗尽电量!
以下是我设置的用于显示启动画面的代码:
<link href="images/touch/splash/splash-320x480.png" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 1)" rel="apple-touch-startup-image">
<link href="images/touch/splash/splash-640x960.png" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
<link href="images/touch/splash/splash-640x1136.png" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
<link href="images/touch/splash/splash-768x1024.png" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 1)" rel="apple-touch-startup-image">
<link href="images/touch/splash/splash-1024x768.png" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 1)" rel="apple-touch-startup-image">
<link href="images/touch/splash/splash-1536x2048.png" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
<link href="images/touch/splash/splash-2048x1636.png" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
我想知道是否有其他人能够重新创建以确认此问题?直到我添加了Splash屏幕,我才看到这个。
编辑:我只能通过按住电源按钮和主页按钮来重置。 编辑2:现在我重新启动了每一个我现在无法重新创建问题。我会继续尝试,但似乎没有任何押韵或理由在2个独立的设备上造成它。