zoukankan      html  css  js  c++  java
  • [PWA] Customize the Splash Screen of a PWA built with create-react-app

    Android displays a splash screen for PWAs based on the icons and names you provide, but iOS just displays a solid color splash screen for installed PWAs by default.

    We'll make a new splash screen image for every iOS device resolution size that we want to support, and then we can make a link tag in index.html to specify those images as the splash screen for each device resolution.

    Also, make sure to remove background_color from the manifest - or it may overwrite the splash screen images on iOS.

    For Splash screen, it use 512*512 image for Andorid.

    For IOS we need to add image for splash screen, no other way around currently.

    First, we must tell iOS that the app is apple-mobile-web-app-capable with a meta tag.

    <meta name="apple-mobile-web-app-capable" content="yes">

    Then we can specify each of those launch images as the image for that resolution.

    <link rel="apple-touch-startup-image" href="splash_640x1136.jpg" media="(device- 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)">
      <link rel="apple-touch-startup-image" href="splash_750x1334.jpg" media="(device- 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)">
      <link rel="apple-touch-startup-image" href="splash_1242x2208.jpg" media="(device- 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)">
      <link rel="apple-touch-startup-image" href="splash_1125x2436.jpg" media="(device- 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)">
      <link rel="apple-touch-startup-image" href="splash_1536x2048.jpg" media="(min-device- 768px) and (max-device- 1024px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait)">
      <link rel="apple-touch-startup-image" href="splash_1668x2224.jpg" media="(min-device- 834px) and (max-device- 834px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait)">
      <link rel="apple-touch-startup-image" href="splash_2048x2732.jpg" media="(min-device- 1024px) and (max-device- 1024px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait)">

    Finally, in manifest.json, we have to actually remove the "background_color" setting first. Otherwise, that will override all of our images.

    
    
  • 相关阅读:
    java applet传参和接收
    如何开启to 日志
    Linux重启网卡的方法
    java下载远程文件到本地
    下载文件使用缓存(一次性读取到内存),优化性能(注意静态对象修改需要加锁)
    浏览器地址传中文解决方法 URLEncoder.encode(str,"编码") new URLDecoder().decode(str,"编码")
    根据端口号(http和https的)跳转到不同的工程
    删除某个文件夹下的所有文件(或一类执行文件)
    http和https访问jsp传送中文参数
    根据取模选择不同的列表
  • 原文地址:https://www.cnblogs.com/Answer1215/p/10199572.html
Copyright © 2011-2022 走看看