Files
monkeygg2.github.io/games/hextris/index.html
T
2023-09-25 19:51:08 -04:00

167 lines
11 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-7L02W3ZMS5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-7L02W3ZMS5');
</script>
<title>Hextris</title>
<meta content="An addictive puzzle game inspired by Tetris." name="description"/>
<link href="manifest.webmanifest" rel="manifest"/>
<meta content="app-id=903769553" name="apple-itunes-app"/>
<meta content="Hextris" name="apple-mobile-web-app-title">
<meta content="yes" name="apple-mobile-web-app-capable"/>
<link href="images/icons/apple-touch-120.png" rel="apple-touch-icon" sizes="120x120"/>
<link href="images/icons/apple-touch-152.png" rel="apple-touch-icon" sizes="152x152"/>
<link href="images/icons/apple-touch-167.png" rel="apple-touch-icon" sizes="167x167"/>
<link href="images/icons/apple-touch-180.png" rel="apple-touch-icon" sizes="180x180"/>
<link href="images/icons/apple-touch-512.png" rel="apple-touch-icon" sizes="512x512"/>
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0, minimal-ui" name="viewport"/>
<meta content="http://hextris.github.io/hextris/" property="og:url"/>
<meta content="Hextris" property="og:site_name">
<meta content="Hextris" property="og:title">
<meta content="An addictive puzzle game inspired by Tetris." property="og:description"/>
<meta content="website" property="og:type"/>
<meta content="https://www.facebook.com/hextris" property="og:author"/>
<meta content="http://hextris.github.io/hextris/images/facebook-opengraph.png" property="og:image"/>
<meta content="1200" property="og:image:width"/>
<meta content="630" property="og:image:height"/>
<meta content="summary" property="twitter:card"/>
<meta content="@hextris" property="twitter:site"/>
<meta content="2742209678" property="twitter:site:id"/>
<meta content="@hextris" property="twitter:creator"/>
<meta content="2742209678" property="twitter:creator:id"/>
<meta content="http://hextris.github.io" property="twitter:domain"/>
<meta content="Hextris" property="twitter:title"/>
<meta content="An addictive puzzle game inspired by Tetris." property="twitter:description"/>
<meta content="http://hextris.github.io/hextris/images/twitter-opengraph.png" property="twitter:image:src"/>
<meta content="512" property="twitter:image:width"/>
<meta content="512" property="twitter:image:height"/>
<meta content="id903769553" property="twitter:app:id:iphone"/>
<meta content="id903769553" property="twitter:app:id:ipad"/>
<meta content="com.hextris.hextris" property="twitter:app:id:googleplay"/>
<meta content="us" property="twitter:app:country"/>
<meta content="itunes.apple.com/us/app/id903769553?mt=8" property="twitter:app:url:iphone"/>
<meta content="itunes.apple.com/us/app/id903769553?mt=8" property="twitter:app:url:ipad"/>
<meta content="https://play.google.com/store/apps/details?id=com.hextris.hextris" property="twitter:app:url:googleplay"/>
<link href="favicon.ico" rel="icon" type="image/png"/>
<link href="http://fonts.googleapis.com/css?family=Exo+2" rel="stylesheet" type="text/css"/>
<link href="style/fa/css/font-awesome.min.css" rel="stylesheet"/>
<link href="style/style.css" rel="stylesheet" type="text/css"/>
<script src="vendor/hammer.min.js" type="text/javascript"></script>
<script src="vendor/js.cookie.js" type="text/javascript"></script>
<script src="vendor/jsonfn.min.js" type="text/javascript"></script>
<script src="vendor/keypress.min.js" type="text/javascript"></script>
<script src="vendor/jquery.js" type="text/javascript"></script>
<script src="js/save-state.js" type="text/javascript"></script>
<script src="js/view.js" type="text/javascript"></script>
<script src="js/wavegen.js" type="text/javascript"></script>
<script src="js/math.js" type="text/javascript"></script>
<script src="js/Block.js" type="text/javascript"></script>
<script src="js/Hex.js" type="text/javascript"></script>
<script src="js/Text.js" type="text/javascript"></script>
<script src="js/comboTimer.js" type="text/javascript"></script>
<script src="js/checking.js" type="text/javascript"></script>
<script src="js/update.js" type="text/javascript"></script>
<script src="js/render.js" type="text/javascript"></script>
<script src="js/input.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
<script src="js/initialization.js" type="text/javascript"></script>
<script src="vendor/sweet-alert.min.js"></script>
<link href="style/rrssb.css" rel="stylesheet"/>
</meta></meta></meta></head>
<body>
<canvas id="canvas"></canvas>
<div class="faded overlay" id="overlay"></div>
<div id="startBtn"></div>
<div class="unselectable" id="helpScreen">
<div id="inst_main_body"></div>
</div>
<img class="helpText" id="openSideBar" src="./images/btn_help.svg"/>
<div class="faded overlay"></div>
<img id="pauseBtn" src="./images/btn_pause.svg"/>
<img id="restartBtn" src="./images/btn_restart.svg"/>
<div id="HIGHSCORE">HIGH SCORE</div>
<div id="highScoreInGameText">
<div id="highScoreInGameTextHeader">HIGH SCORE</div><div id="currentHighScore">10292</div>
</div>
<div id="gameoverscreen">
<div id="container">
<div class="GOTitle" id="gameOverBox">GAME OVER</div>
<div id="cScore">1843</div>
<div class="GOTitle" id="highScoresTitle">HIGH SCORES</div>
<div class="score"><span class="scoreNum">1.</span> <div id="1place" style="display:inline;">0</div></div>
<div class="score"><span class="scoreNum">2.</span> <div id="2place" style="display:inline;">0</div></div>
<div class="score"><span class="scoreNum">3.</span> <div id="3place" style="display:inline;">0</div></div>
</div>
<div id="bottomContainer">
<img height="57px" id="restart" src="./images/btn_restart.svg"/>
<div id="socialShare">
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg height="57px" version="1.1" viewbox="0 0 255 65" width="224.6377px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Share button</title>
<defs>
</defs>
<g fill="none" fill-rule="evenodd" id="Page-1" sketch:type="MSPage" stroke="none" stroke-width="1">
<g id="Game-over-" sketch:type="MSArtboardGroup" transform="translate(-95.000000, -565.000000)">
<g id="Share-button" sketch:type="MSLayerGroup" transform="translate(95.000000, 565.000000)">
<a class="popup" onclick="window.open('https://twitter.com/intent/tweet?text=Can you beat my score of '+ score +' points at&amp;button_hashtag=hextris ? http://hextris.github.io/hextris @hextris','name','width=600,height=400')" style="cursor:pointer;"><polygon fill="#3498DB" id="Score-hex-2" points="127.661316 -94.814636 160.137269 -76.064636 160.137269 141.064636 127.661317 159.814636 95.185364 141.064636 95.1853635 -76.064636 " sketch:type="MSShapeGroup" transform="translate(127.661316, 32.500000) rotate(-90.000000) translate(-127.661316, -32.500000) "></polygon></a>
<text class="popup" fill="#FFFFFF" font-family="Exo" font-size="16" font-weight="420" id="SHARE-MY-SCORE!" onclick="window.open('https://twitter.com/intent/tweet?text=Can you beat my score of '+ score +' points at&amp;button_hashtag=hextris ? http://hextris.github.io/hextris @hextris','name','width=600,height=400')" sketch:type="MSTextLayer" style="cursor:pointer;">
<tspan x="67" y="39">SHARE MY SCORE!</tspan>
</text>
</g>
</g>
</g>
</svg>
</div>
<div id="buttonCont">
<ul class="rrssb-buttons">
<li class="rrssb-facebook">
<a class="popup" href="http://www.facebook.com/sharer.php?s=100
&amp;p[url]=hextris.io">
<span class="rrssb-icon">
<svg height="29" preserveaspectratio="xMidYMid" viewbox="0 0 29 29" width="29" xmlns="http://www.w3.org/2000/svg">
<path class="cls-2" d="M26.4 0H2.6C1.714 0 0 1.715 0 2.6v23.8c0 .884 1.715 2.6 2.6 2.6h12.393V17.988h-3.996v-3.98h3.997v-3.062c0-3.746 2.835-5.97 6.177-5.97 1.6 0 2.444.173 2.845.226v3.792H21.18c-1.817 0-2.156.9-2.156 2.168v2.847h5.045l-.66 3.978h-4.386V29H26.4c.884 0 2.6-1.716 2.6-2.6V2.6c0-.885-1.716-2.6-2.6-2.6z" fill-rule="evenodd"></path>
</svg>
</span>
<span class="rrssb-text">facebook</span>
</a>
</li>
<li class="rrssb-twitter">
<a class="popup" href="http://twitter.com/home?status=Play Hextris! - http://hextris.github.io/ #hextris">
<span class="rrssb-icon">
<svg height="28" viewbox="0 0 28 28" width="28" xmlns="http://www.w3.org/2000/svg">
<path d="M24.253 8.756C24.69 17.08 18.297 24.182 9.97 24.62c-3.122.162-6.22-.646-8.86-2.32 2.702.18 5.375-.648 7.507-2.32-2.072-.248-3.818-1.662-4.49-3.64.802.13 1.62.077 2.4-.154-2.482-.466-4.312-2.586-4.412-5.11.688.276 1.426.408 2.168.387-2.135-1.65-2.73-4.62-1.394-6.965C5.574 7.816 9.54 9.84 13.802 10.07c-.842-2.738.694-5.64 3.434-6.48 2.018-.624 4.212.043 5.546 1.682 1.186-.213 2.318-.662 3.33-1.317-.386 1.256-1.248 2.312-2.4 2.942 1.048-.106 2.07-.394 3.02-.85-.458 1.182-1.343 2.15-2.48 2.71z"></path>
</svg>
</span>
<span class="rrssb-text">twitter</span>
</a>
</li>
</ul>
<div id="badges">
<a href="https://play.google.com/store/apps/details?id=com.hextris.hextris"><img id="androidBadge" src="images/android.png"/></a>
<a href="https://itunes.apple.com/us/app/hextris/id903769553?mt=8"><img id="iOSBadge" src="images/appstore.svg"/></a>
</div>
</div>
</div>
</div>
<script type="text/javascript">
(function addRussianSocialShare(){
var lang=navigator.language || navigator.userLanguage;
if (lang.substr(0, 2) == 'ru') {
$('.rrssb-facebook').remove();
var n=$.parseHTML('<li class="rrssb-vk"><a href="http://vk.com/share.php?url=http://kurtnoble.com/labs/rrssb/index.html" class="popup"><span class="rrssb-icon"><svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="70 70 378.7 378.7"><path d="M254.998 363.106h21.217s6.408-.706 9.684-4.23c3.01-3.24 2.914-9.32 2.914-9.32s-.415-28.47 12.796-32.663c13.03-4.133 29.755 27.515 47.482 39.685 13.407 9.206 23.594 7.19 23.594 7.19l47.407-.662s24.797-1.53 13.038-21.027c-.96-1.594-6.85-14.424-35.247-40.784-29.728-27.59-25.743-23.126 10.063-70.85 21.807-29.063 30.523-46.806 27.8-54.405-2.596-7.24-18.636-5.326-18.636-5.326l-53.375.33s-3.96-.54-6.892 1.216c-2.87 1.716-4.71 5.726-4.71 5.726s-8.452 22.49-19.714 41.618c-23.77 40.357-33.274 42.494-37.16 39.984-9.037-5.842-6.78-23.462-6.78-35.983 0-39.112 5.934-55.42-11.55-59.64-5.802-1.4-10.076-2.327-24.915-2.48-19.046-.192-35.162.06-44.29 4.53-6.072 2.975-10.757 9.6-7.902 9.98 3.528.47 11.516 2.158 15.75 7.92 5.472 7.444 5.28 24.154 5.28 24.154s3.145 46.04-7.34 51.758c-7.193 3.922-17.063-4.085-38.253-40.7-10.855-18.755-19.054-39.49-19.054-39.49s-1.578-3.873-4.398-5.947c-3.42-2.51-8.2-3.307-8.2-3.307l-50.722.33s-7.612.213-10.41 3.525c-2.488 2.947-.198 9.036-.198 9.036s39.707 92.902 84.672 139.72c41.234 42.93 88.048 40.112 88.048 40.112"/></svg></span><span class="rrssb-text">vk.com</span></a></li>');
$('.rrssb-buttons').prepend(n);
}})()
</script>
<script src="vendor/rrssb.min.js" type="text/javascript"></script>
</body>
</html>