Skip to content

dawn2766/PWA_test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

文件结构

favicon.ico、favicon.png:图标

index.html:html 前端代码

index.css:渲染 html 网页的样式文件

manifest.json:使网页能够被下载为桌面应用(PC端或手机均可)

sw.js:Service Worker 在网页已经关闭的情况下还可以运行, 用来实现页面的缓存和离线


与传统 html 不同的代码:

<head>
    ...
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    ...
    <link rel="manifest" href="manifest.json" />
</head>
<body>
    ...
    <script src="./sw.js"></script>
</body>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published