108 lines
5.4 KiB
HTML
108 lines
5.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<!--
|
|
/_ ... _ /_
|
|
/_//_/ ////_//_//_//\
|
|
_/ _//
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>WORDs</title>
|
|
<link rel="stylesheet" href="https://unpkg.com/chota@0.8.0">
|
|
<link rel="stylesheet" href="styles.css?v=3">
|
|
<link rel="icon" type="image/png" href="images/favicon.png">
|
|
<!-- Mobile -->
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1, minimal-ui">
|
|
<meta name="format-detection" content="telephone=no">
|
|
<!-- Android -->
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<!-- iOS -->
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-title" content="WORDs">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
|
|
<link rel="apple-touch-startup-image" href="images/splash/splash-portrait-640x1136.png" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)">
|
|
<link rel="apple-touch-startup-image" href="images/splash/splash-portrait-750x1334.png" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)">
|
|
<link rel="apple-touch-startup-image" href="images/splash/splash-portrait-828x1792.png" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)">
|
|
<link rel="apple-touch-startup-image" href="images/splash/splash-portrait-1125x2436.png" media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)">
|
|
<link rel="apple-touch-startup-image" href="images/splash/splash-portrait-1242x2208.png" media="(device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)">
|
|
<link rel="apple-touch-startup-image" href="images/splash/splash-portrait-1242x2688.png" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)">
|
|
<link rel="apple-touch-startup-image" href="images/splash/splash-portrait-1536x2048.png" media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)">
|
|
<link rel="apple-touch-startup-image" href="images/splash/splash-portrait-1668x2224.png" media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)">
|
|
<link rel="apple-touch-startup-image" href="images/splash/splash-portrait-1668x2388.png" media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)">
|
|
<link rel="apple-touch-startup-image" href="images/splash/splash-portrait-2048x2732.png" media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
<nav class="nav">
|
|
<div class="nav-left hide-xs">
|
|
<a class="brand">WORDs</a>
|
|
</div>
|
|
<div class="nav-center">
|
|
<p id="lives" class="button error is-full-width">loading...</p>
|
|
</div>
|
|
<div class="nav-right">
|
|
<!-- <a class="button dropdown">Language</a> -->
|
|
<a class="button clear" id="theme-switch" onclick="switchMode(this)">☀️</a>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
|
|
<nav class="tabs is-full">
|
|
<a onclick="document.location.reload(true);" class="active" id="gameButton">Game</a>
|
|
<a onclick="showPage(this, pageStatistics);" id="statsButton">Statistics</a>
|
|
<a onclick="showPage(this, pageCredits);" id="creditsButton" class="hide-xs">Credits</a>
|
|
</nav>
|
|
|
|
<br>
|
|
|
|
<section id="content">
|
|
<!-- answer word div -->
|
|
<p id="word" class="card text-center text-uppercase">
|
|
Loading word...
|
|
</p>
|
|
|
|
<!-- keyboard div -->
|
|
<div class="row">
|
|
<div class="col hide-xs hide-sm"></div>
|
|
<div id="keyboard" class="col-5-md is-hidden text-center is-full-width">
|
|
... keyboard ...
|
|
</div>
|
|
<div class="col hide-xs hide-sm"></div>
|
|
</div>
|
|
</section>
|
|
|
|
<footer class="text-center hide-xs">
|
|
<hr>
|
|
<p class="text-grey is-marginless is-small">
|
|
by <a href="//iiiypuk.me/about/" target="_blank">iiiypuk</a><br>
|
|
ver: <a href="https://github.com/iiiypuk/hgman/blob/master/CHANGELOG.md" target="_blank">2.0.2</a>
|
|
</p>
|
|
<div id="statistics" class="is-hidden">
|
|
<script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
|
|
<span id="busuanzi_container_site_uv">UV <span id="busuanzi_value_site_uv"></span></span>
|
|
<span id="busuanzi_container_site_pv">PV <span id="busuanzi_value_site_pv"></span></span>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
|
|
<script>
|
|
if (window.matchMedia &&
|
|
window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
|
document.body.classList.add('dark');
|
|
document.querySelector("#theme-switch").innerHTML = "🌙";
|
|
}
|
|
|
|
function switchMode(el) {
|
|
const bodyClass = document.body.classList;
|
|
bodyClass.contains("dark")
|
|
? ((el.innerHTML = "☀️"), bodyClass.remove("dark"))
|
|
: ((el.innerHTML = "🌙"), bodyClass.add("dark"));
|
|
}
|
|
|
|
</script>
|
|
<script type="text/javascript" src="game.js?v=3"></script>
|
|
</body>
|
|
</html>
|