-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 717dc44
Showing
4 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
<!doctype html> | ||
<html lang="en-US"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="x-ua-compatible" content="ie=edge,chrome=1" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#000000" /> | ||
<meta name="description" content="Button clicker idle game." /> | ||
|
||
<!-- | ||
manifest.json provides metadata used when your web app is installed on a | ||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ | ||
--> | ||
<link rel="manifest" href="manifest.json" /> | ||
|
||
|
||
<title>Button Clicker | remarkablegames</title> | ||
<script type="module" crossorigin src="/button-clicker/assets/index-DzmYlhYM.js"></script> | ||
<link rel="stylesheet" crossorigin href="/button-clicker/assets/index-Dfblm97q.css"> | ||
</head> | ||
<body> | ||
<noscript>You need to enable JavaScript to play this game.</noscript> | ||
|
||
<header id="message">Welcome to Button Clicker.</header> | ||
<main> | ||
<h1>Button Clicker</h1> | ||
<p id="counter">0</p> | ||
<p> | ||
<button id="button" title="Click Button">Click Button</button> | ||
</p> | ||
<table> | ||
<thead> | ||
<tr> | ||
<th></th> | ||
<th>Cost</th> | ||
<th>Current Output</th> | ||
<th>Next Output</th> | ||
</tr> | ||
</thead> | ||
<tbody id="store"> | ||
<tr id="cursor"> | ||
<td> | ||
<button disabled title="Cursor">Cursor</button> | ||
<span class="owned"></span> | ||
</td> | ||
<td class="cost"></td> | ||
<td class="output-current"></td> | ||
<td class="output-next"></td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</main> | ||
|
||
<!-- Global site tag (gtag.js) - Google Analytics --> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
window.gtag = function () { | ||
dataLayer.push(arguments); | ||
}; | ||
gtag('js', new Date()); | ||
</script> | ||
|
||
|
||
<!-- | ||
GitHub Corners. See https://github.com/remarkablemark/github-corners | ||
--> | ||
<script | ||
src="https://unpkg.com/github-corners/dist/embed.min.js" | ||
data-href="https://github.com/remarkablegames/button-clicker" | ||
data-target="_blank" | ||
async | ||
defer | ||
></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"short_name": "Button Clicker", | ||
"name": "Button Clicker", | ||
"icons": [], | ||
"start_url": ".", | ||
"display": "standalone", | ||
"theme_color": "#000000", | ||
"background_color": "#ffffff" | ||
} |