-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2048.html
23 lines (23 loc) · 882 Bytes
/
2048.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>2048</title>
<link rel="stylesheet" type="text/css" href="css/all.css">
</head>
<body ng-app="game2048">
<div class="wrapper" ng-controller="GameController">
<div class="board" keydown-events>
<div class="row" ng-repeat="row in data track by $index">
<div ng-repeat="cell in row track by $index" ng-class="{'highlight': cell >= 2048}">{{cell}}</div>
</div>
</div>
<div class="overlay">
</div>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.16/angular.min.js"></script>
<script type="text/javascript" src="js/application.js"></script>
</body>
</html>