mirror of
https://github.com/JeremyLikness/vanillajs-deck
synced 2024-11-14 17:44:56 +00:00
21 lines
582 B
HTML
21 lines
582 B
HTML
<title>Progressive Web Applications</title>
|
|
<h1>Progressive Web Applications (PWA)</h1>
|
|
<div class="center">
|
|
<div class="card appear" repeat="pwa">
|
|
<span>{{item}}</span>
|
|
</div>
|
|
</div>
|
|
<h2 class="appear">PWA Demo</h2>
|
|
<script>
|
|
this.pwa = [
|
|
"💾 Install as Local Apps",
|
|
"📶 Reliable (even Offline)",
|
|
"🏃♀️ Fast (Cache)",
|
|
"📃 Manifest",
|
|
"👷♀️ Service Worker",
|
|
"🆗 Install, Activate",
|
|
"📂 Pre-cache",
|
|
"↗ Intercept Fetch"
|
|
];
|
|
</script>
|
|
<next-slide>220-wrapup</next-slide> |