80 lines
3.0 KiB
HTML
80 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>2048</title>
|
|
|
|
<link href="style/main.css" rel="stylesheet" type="text/css">
|
|
|
|
<script src="js/keyboard_input_manager.js"></script>
|
|
<script src="js/html_actuator.js"></script>
|
|
<script src="js/grid.js"></script>
|
|
<script src="js/tile.js"></script>
|
|
<script src="js/game_manager.js"></script>
|
|
<script src="js/application.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="heading">
|
|
<h1 class="title">2048</h1>
|
|
<div class="score-container">0</div>
|
|
</div>
|
|
<p class="game-intro">Join the numbers and get to the <strong>2048 tile!</strong></p>
|
|
|
|
<div class="game-container">
|
|
<div class="grid-container">
|
|
<div class="grid-row">
|
|
<div class="grid-cell"></div>
|
|
<div class="grid-cell"></div>
|
|
<div class="grid-cell"></div>
|
|
<div class="grid-cell"></div>
|
|
</div>
|
|
<div class="grid-row">
|
|
<div class="grid-cell"></div>
|
|
<div class="grid-cell"></div>
|
|
<div class="grid-cell"></div>
|
|
<div class="grid-cell"></div>
|
|
</div>
|
|
<div class="grid-row">
|
|
<div class="grid-cell"></div>
|
|
<div class="grid-cell"></div>
|
|
<div class="grid-cell"></div>
|
|
<div class="grid-cell"></div>
|
|
</div>
|
|
<div class="grid-row">
|
|
<div class="grid-cell"></div>
|
|
<div class="grid-cell"></div>
|
|
<div class="grid-cell"></div>
|
|
<div class="grid-cell"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="tile-container">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<p class="game-explanation">
|
|
<strong class="important">How to play:</strong> Use your <strong>arrow keys</strong> to move the tiles. When two tiles with the same number touch, they <strong>merge into one!</strong>
|
|
</p>
|
|
<hr>
|
|
<p>
|
|
Created by <a href="http://gabrielecirulli.com" target="_blank">Gabriele Cirulli.</a> Based on <a href="https://itunes.apple.com/us/app/1024!/id823499224" target="_blank">1024 by Veewo Studio.</a>
|
|
</p>
|
|
<div class="sharing">
|
|
<a href="https://twitter.com/share" class="twitter-share-button" data-text="Check out 2048, a game where you join numbers to score high!" data-via="gabrielecirulli">Tweet</a>
|
|
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){i["GoogleAnalyticsObject"]=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,"script","//www.google-analytics.com/analytics.js","ga");
|
|
|
|
ga("create", "UA-42620757-2", "gabrielecirulli.github.io");
|
|
ga("send", "pageview");
|
|
</script>
|
|
</body>
|
|
</html>
|