• R/O
  • HTTP
  • SSH
  • HTTPS

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

PWAのサンプルコード


File Info

Rev. 664d482382ac0451bd083a3a14b1c3d7b3083db2
Size 774 bytes
Time 2019-11-29 19:35:32
Author hylom
Log Message

add sample codes

Content

<!doctype html>
<html lang="ja">

<head>
  <meta charset="utf-8">
  <title>ServiceWorker Example</title>
</head>

<body>
  <h1>ServiceWorker Example</h1>
  <img src="./sample.jpeg" width="400" height="267">
  <p>Browser is <strong><span id="browser_status"></span></strong>.
    <button id="update_status_button">更新</button>
  </p>

  <div id="install-svcw" style="display:none;">
    Service Workerはインストールされていません。
    <button id="install_svcworker_button">インストール</button>
  </div>
  <div id="uninstall-svcw" style="display:none;">
    Service Workerはインストール済みです。
    <button id="uninstall_svcworker_button">アンインストール</button>
  </div>

</body>

<script src="./index.js"></script>

</html>