Guten Tag,
ich würde mir wünschen, das man auch das Styling der Status-bar ändern kann. Momentan wird ja <meta name="apple-mobile-web-app-status-bar-style" content="black"> eingebunden, ich würde aber lieber <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> einbinden, kann da durch das Plugin aber nicht ohne weiteres einfügen.
Zudem würde ich mir die Einbindung des IOS Startup Image wünschen, das ganze kann man wie folgt einbinden:
HTML
- !-- STARTUP IMAGES -->
- <!-- iPad retina portrait startup image -->
- <link href="https://placehold.it/1536x2008"
- media="(device-width: 768px) and (device-height: 1024px)
- and (-webkit-device-pixel-ratio: 2)
- and (orientation: portrait)"
- rel="apple-touch-startup-image">
- <!-- iPad retina landscape startup image -->
- <link href="https://placehold.it/1496x2048"
- media="(device-width: 768px) and (device-height: 1024px)
- and (-webkit-device-pixel-ratio: 2)
- and (orientation: landscape)"
- rel="apple-touch-startup-image">
- <!-- iPad non-retina portrait startup image -->
- <link href="https://placehold.it/768x1004"
- media="(device-width: 768px) and (device-height: 1024px)
- and (-webkit-device-pixel-ratio: 1)
- and (orientation: portrait)"
- rel="apple-touch-startup-image">
- <!-- iPad non-retina landscape startup image -->
- <link href="https://placehold.it/748x1024"
- media="(device-width: 768px) and (device-height: 1024px)
- and (-webkit-device-pixel-ratio: 1)
- and (orientation: landscape)"
- rel="apple-touch-startup-image">
- <!-- iPhone 6 Plus portrait startup image -->
- <link href="https://placehold.it/1242x2148"
- media="(device-width: 414px) and (device-height: 736px)
- and (-webkit-device-pixel-ratio: 3)
- and (orientation: portrait)"
- rel="apple-touch-startup-image">
- <!-- iPhone 6 Plus landscape startup image -->
- <link href="https://placehold.it/1182x2208"
- media="(device-width: 414px) and (device-height: 736px)
- and (-webkit-device-pixel-ratio: 3)
- and (orientation: landscape)"
- rel="apple-touch-startup-image">
- <!-- iPhone 6 startup image -->
- <link href="https://placehold.it/750x1294"
- media="(device-width: 375px) and (device-height: 667px)
- and (-webkit-device-pixel-ratio: 2)"
- rel="apple-touch-startup-image">
- <!-- iPhone 5 startup image -->
- <link href="https://placehold.it/640x1096"
- media="(device-width: 320px) and (device-height: 568px)
- and (-webkit-device-pixel-ratio: 2)"
- rel="apple-touch-startup-image">
- <!-- iPhone < 5 retina startup image -->
- <link href="https://placehold.it/640x920"
- media="(device-width: 320px) and (device-height: 480px)
- and (-webkit-device-pixel-ratio: 2)"
- rel="apple-touch-startup-image">
- <!-- iPhone < 5 non-retina startup image -->
- <link href="https://placehold.it/320x460"
- media="(device-width: 320px) and (device-height: 480px)
- and (-webkit-device-pixel-ratio: 1)"
- rel="apple-touch-startup-image">
Hoffe das ist alles umsetzbar.
Gruß,
TZimon