-
Notifications
You must be signed in to change notification settings - Fork 388
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
Showing
28 changed files
with
1,601 additions
and
519 deletions.
There are no files selected for viewing
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,78 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
|
||
<title>Blockrain.js - A Tetris game in HTML5 + Javascript (with autoplay!)</title> | ||
|
||
<meta name="description" content="Blockrain.js lets you embed the classic Tetris game on your website" /> | ||
<meta name="keywords" content="js, jquery, game, plugin, html5, tetris" /> | ||
<meta name="robots" content="INDEX, FOLLOW" /> | ||
<meta name="author" content="Aerolab" /> | ||
|
||
<!-- Facebook Stuff --> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:site_name" content="Blockrain.js" /> | ||
<meta property="og:title" content="Blockrain.js - a Tetris game in HTML5 + Javascript" /> | ||
<meta property="og:description" content="Blockrain.js lets you embed the classic Tetris game on your website" /> | ||
<meta property="og:image" content="http://aerolab.github.io/blockrain.js/assets/images/social-card.png" /> | ||
<meta property="og:url" content="http://aerolab.github.io/blockrain.js" /> | ||
<meta property="fb:app_id" content="344819049029949" /> | ||
|
||
<!-- Twitter Stuff --> | ||
<meta property="twitter:card" content="summary" /> | ||
<meta property="twitter:site" content="@aerolab" /> | ||
<meta property="twitter:title" content="Blockrain.js - a Tetris game in HTML5 + Javascript" /> | ||
<meta property="twitter:description" content="Blockrain.js lets you embed the classic Tetris game on your website" /> | ||
<meta property="twitter:image" content="http://aerolab.github.io/blockrain.js/assets/images/social-card.png" /> | ||
<meta property="twitter:url" content="http://aerolab.github.io/blockrain.js" /> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui" /> | ||
<link rel="shortcut icon" href="assets/images/favicon.png"> | ||
|
||
<link href='http://fonts.googleapis.com/css?family=Play:400,700' rel='stylesheet' type='text/css'> | ||
<link rel="stylesheet" href="assets/css/style.css"> | ||
<link rel="stylesheet" href="src/blockrain.css"> | ||
|
||
</head> | ||
<body> | ||
|
||
|
||
<section id="examples"> | ||
|
||
<header> | ||
<h1>Check out the demo</h1> | ||
</header> | ||
|
||
<article id="example-slider"> | ||
<div class="example"> | ||
<div class="game" id="tetris-demo"></div> | ||
<div class="game" id="tetris-demo-2"></div> | ||
</div> | ||
</article> | ||
|
||
</section> | ||
|
||
<script src="assets/js/jquery-1.11.1.min.js"></script> | ||
<script src="src/blockrain.jquery.libs.js"></script> | ||
<script src="src/blockrain.jquery.src.js"></script> | ||
<script src="src/blockrain.jquery.themes.js"></script> | ||
|
||
<script> | ||
|
||
var $demo = $('#tetris-demo').blockrain({ | ||
speed: 100, | ||
theme: 'individual', | ||
autoplay: true | ||
}); | ||
|
||
var $demo2 = $('#tetris-demo-2').blockrain({ | ||
speed: 100, | ||
theme: 'individual', | ||
autoplay: true | ||
}); | ||
|
||
</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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.