Я пытаюсь, чтобы мое веб-приложение Apple загрузило страницу spla sh в соответствии с рекомендациями Apple. Я создал 10 изображений разных размеров, используя этот spla sh генератор экрана . Я указываю устройство на местоположение "static/splash-images/apple-launch-2048x2732.png"
. Однако, когда страница загружается на устройство, кажется, что оно запрашивает static/apple-launch-2048x2732.png
и возвращает 404. Насколько я понимаю, страницы IOS spla sh Web-App, как известно, содержат ошибки.
Вот моя полная HTML голова:
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1,user-scalable=yes">
<meta charset="UTF-8">
<link rel="apple-touch-icon" href="{{ url_for('static', filename = 'images/apple-touch-icon.png') }}">
<link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3)" href="static/splash-images/apple-launch-1125x2436.png">
<link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)" href="static/splash-images/apple-launch-750x1334.png">
<link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3)" href="static/splash-images/apple-launch-1242x2208.png">
<link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" href="static/splash-images/apple-launch-640x1136.png">
<link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2)" href="static/splash-images/apple-launch-1536x2048.png">
<link rel="apple-touch-startup-image" media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2)" href="static/splash-images/apple-launch-1668x2224.png">
<link rel="apple-touch-startup-image" media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2)" href="static/splash-images/apple-launch-2048x2732.png">
</head>
Любая помощь с благодарностью, заранее спасибо.