cakefoot/index.html

139 lines
4.3 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en-US">
<head>
<meta charset="utf-8">
<link rel="icon" href="favicon.ico" />
<link rel="canonical" href="https://cakefoot.dank.game" />
<title>Cakefoot 🍰😈 | Rage game | Wishlist now on Steam!</title>
<style>
@import url("https://shampoo.ooo/lib/fonts/rounded-mplus/2m-medium/style.css");
@import url("https://shampoo.ooo/lib/fonts/rounded-mplus/2p-thin/style.css ");
@import url("https://shampoo.ooo/lib/fonts/notcouriersans/regular/style.css");
html
{
height: 100%;
color: #eee;
}
body
{
margin: 0px;
background: #000;
display: grid;
grid-template-columns: 100%;
height: 100%;
font-family: RoundedMPlus2MMedium;
font-size: 18px;
text-align: center;
justify-content: center;
align-items: center;
}
canvas
{
width: 100%;
height: 100%;
display: none;
}
div#message
{
margin: 0px auto;
overflow: hidden;
}
a
{
color: #999;
}
p#loading
{
font-size: 72px;
}
span.bullet
{
color: transparent;
text-shadow: 0 0 0 #444;
}
@media (orientation: portrait)
{
body
{
grid-template-rows: 80% 20%;
}
}
@media (orientation: landscape)
{
body
{
grid-template-rows: 94% 6%;
}
}
</style>
</head>
<body>
<p id="loading">
Loading...
</p>
<!-- Emscripten's module object will update this canvas with WebGL content. -->
<canvas id="canvas"></canvas>
<!--
<div id="message">
<div>Join e-mail list
<div>Watch the trailer and wishlist on Steam
<div>Controls
<div>Hint: collect every coin for a different ending
<div>Hint: unlock BUFFALO BEEF CAKE to get a heavyweight character and faster times
<div>Hint: there are at least two other cakes, maybe three?
<div>Follow on Twitter, Tik Tok, YouTube, Steam and itch.io
<div>There is a press kit available
<div>Release dates and platforms
<div>Ad support and subscriptions coming soon
<div>Visit the arcade cabinet
<div>Cakefoot is powered by a custom game engine SPACE🪐BOX
<div>Buy a 5-pack of Cakefoot pins
-->
<div id="message">
&#xFE0F; <a href="https://store.steampowered.com/app/2869020/Cakefoot/" target="new">WISHLIST NOW on Steam</a>&#xFE0F;
<span class="bullet">🔸</span> Use ☝&#xFE0F;, &#x1F5B1;&#xFE0F;, &#x2328;&#xFE0F; or 🎮 to play <span class="bullet">🔸</span>
Visit the <a href="https://x.com/wondervillenyc/status/1735827245384572940" target="_new">arcade cabinet</a> 🕹&#xFE0F;
<span class="bullet">🔸</span> by <a href="https://ohsqueezy.itch.io">@ohsqueezy</a>👾&#xFE0F;
</div>
<script>
/* Emscripten's Module object doesn't exist yet, so create it here */
var Module = {
/* Files are stored in a separate location on FOAM builds */
locateFile: function(path, prefix)
{
console.log(path, prefix);
/* The data file is loaded before the main JavaScript, so the prefix is empty. See the note at
* https://emscripten.org/docs/api_reference/module.html#Module.locateFile */
if (path.endsWith(".data"))
{
return "build/wasm/" + path;
}
else
{
return prefix + path;
}
}
};
</script>
<!-- This file is built by Emscripten when compiling the program -->
<script src="build/wasm/cakefoot.js"></script>
</body>
</html>