瀏覽代碼

Add Manifest File (#842)

* manifest

* splashscreen
Faustino Kialungila 5 年之前
父節點
當前提交
9953cc03b3

二進制
public/apple-touch-icon.png


+ 56 - 0
public/index.html

@@ -40,6 +40,11 @@
     <meta property="og:image:width" content="1280" />
     <meta property="og:image:height" content="669" />
 
+    <!-- Chrome -->
+    <meta name="theme-color" content="#FFFF" />
+    <!-- Safari -->
+    <meta name="apple-mobile-web-app-status-bar-style" content="default" />
+
     <!-- Twitter Card tags -->
     <meta name="twitter:card" content="summary_large_image" />
     <meta name="twitter:title" content="Excalidraw" />
@@ -70,6 +75,57 @@
       crossorigin="anonymous"
     />
 
+    <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
+    <link
+      href="%PUBLIC_URL%/splashscreen_images/iphone5_splash.png"
+      media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)"
+      rel="apple-touch-startup-image"
+    />
+    <link
+      href="%PUBLIC_URL%/splashscreen_images/iphone6_splash.png"
+      media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)"
+      rel="apple-touch-startup-image"
+    />
+    <link
+      href="%PUBLIC_URL%/splashscreen_images/iphoneplus_splash.png"
+      media="(device-width: 621px) and (device-height: 1104px) and (-webkit-device-pixel-ratio: 3)"
+      rel="apple-touch-startup-image"
+    />
+    <link
+      href="%PUBLIC_URL%/splashscreen_images/iphonex_splash.png"
+      media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3)"
+      rel="apple-touch-startup-image"
+    />
+    <link
+      href="%PUBLIC_URL%/splashscreen_images/iphonexr_splash.png"
+      media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2)"
+      rel="apple-touch-startup-image"
+    />
+    <link
+      href="%PUBLIC_URL%/splashscreen_images/iphonexsmax_splash.png"
+      media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3)"
+      rel="apple-touch-startup-image"
+    />
+    <link
+      href="%PUBLIC_URL%/splashscreen_images/ipad_splash.png"
+      media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2)"
+      rel="apple-touch-startup-image"
+    />
+    <link
+      href="%PUBLIC_URL%/splashscreen_images/ipadpro1_splash.png"
+      media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2)"
+      rel="apple-touch-startup-image"
+    />
+    <link
+      href="%PUBLIC_URL%/splashscreen_images/ipadpro3_splash.png"
+      media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2)"
+      rel="apple-touch-startup-image"
+    />
+    <link
+      href="%PUBLIC_URL%/splashscreen_images/ipadpro2_splash.png"
+      media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2)"
+      rel="apple-touch-startup-image"
+    />
     <script
       async
       src="https://www.googletagmanager.com/gtag/js?id=UA-387204-13"

二進制
public/logo-180x180.png


+ 21 - 0
public/manifest.json

@@ -0,0 +1,21 @@
+{
+  "short_name": "Excalidraw",
+  "name": "Excalidraw",
+  "description": "Excalidraw is a whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them.",
+  "icons": [
+    {
+      "src": "logo-180x180.png",
+      "sizes": "180x180",
+      "type": "image/png"
+    },
+    {
+      "src": "apple-touch-icon.png",
+      "type": "image/png",
+      "sizes": "256x256"
+    }
+  ],
+  "start_url": ".",
+  "display": "standalone",
+  "theme_color": "#000000",
+  "background_color": "#ffffff"
+}

二進制
public/splashscreen_images/ipad_splash.png


二進制
public/splashscreen_images/ipadpro1_splash.png


二進制
public/splashscreen_images/ipadpro2_splash.png


二進制
public/splashscreen_images/ipadpro3_splash.png


二進制
public/splashscreen_images/iphone5_splash.png


二進制
public/splashscreen_images/iphone6_splash.png


二進制
public/splashscreen_images/iphoneplus_splash.png


二進制
public/splashscreen_images/iphonex_splash.png


二進制
public/splashscreen_images/iphonexr_splash.png


二進制
public/splashscreen_images/iphonexsmax_splash.png