2011-02-13 07:16:43 +00:00
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
< html xmlns = "http://www.w3.org/1999/xhtml"
xmlns:og="http://opengraphprotocol.org/schema/"
xmlns:fb="http://www.facebook.com/2008/fbml">
< head >
2011-02-13 12:28:40 +00:00
<!-- Google Chrome Frame Compatibility -->
< meta http-equiv = "X-UA-Compatible" content = "chrome=1" / >
< meta http-equiv = "Content-Type" content = "text/html; charset=UTF-8" / >
<!-- SEO Friendly -->
< title > Wyrian - A clone Game of Tyrian in HTML5< / title >
< meta name = "description" content = "Wyrian : An awesome clone Game of Tyrian. Developed during the HTML5 Game Jam 2011 at Paris by Guillaume DE LA RUE." / >
<!-- Facebook Meta Tags -->
< meta property = "og:type" content = "game" / >
< meta property = "og:title" content = "Wyrian - An awesome clone Game of Tyrian in HTML5" / >
< meta property = "og:site_name" content = "Wyrian" / >
< meta property = "og:url" content = "http://www.html5place.com/lab/wyrian/" / >
< meta property = "og:description" content = "Wyrian : An awesome clone Game of Tyrian. Developed during the HTML5 Game Jam 2011 at Paris." / >
2011-02-13 07:16:43 +00:00
2011-02-13 12:28:40 +00:00
<!-- Stylesheets -->
2011-02-12 00:36:37 +00:00
< link rel = "stylesheet" media = "all" href = "css/style.css" / >
2011-02-13 05:19:58 +00:00
< link href = "http://fonts.googleapis.com/css?family=Orbitron:400,500,700,900" rel = "stylesheet" type = "text/css" >
2011-02-13 12:52:18 +00:00
< / head >
2011-02-11 23:27:34 +00:00
< body >
2011-02-13 12:28:40 +00:00
<!-- Game Intro -->
< div id = "game-intro" >
< div class = "text orbitron" > Wyrian< / div >
< div id = "start-game" class = "orbitron" > Play< / div >
< / div >
<!-- Game Over -->
2011-02-13 07:16:43 +00:00
< div id = "game-over" >
< div class = "text orbitron" > GAME OVER< / div >
< div id = "restart-game" class = "orbitron" > Restart< / div >
2011-02-13 12:28:40 +00:00
< div id = "share-buttons" >
< div class = "twitter" >
< a href = "http://twitter.com/?status=RT%20%40html5place%20%3A%20Wyrian%20-%20An%20awesome%20clone%20Game%20of%20Tyrian%20in%20%23html5%20http%3A%2F%2Fbit.ly%2FgpObfX%20%23pgj2011%20%23game" target = "_blank" title = "Share on Twitter" > < img src = "images/twitter_button.png" width = "122" height = "42" > < / a >
< / div >
< div class = "facebook" >
< a href = "http://www.facebook.com/sharer.php?u=http://www.html5place.com/lab/wyrian/" target = "_blank" title = "Share on Facebook" > < img src = "images/facebook_button.png" width = "122" height = "42" > < / a >
< / div >
< / div >
2011-02-13 07:16:43 +00:00
< / div >
2011-02-13 12:28:40 +00:00
<!-- Scene -->
2011-02-13 05:19:58 +00:00
< div class = "container" id = "GameContainer" >
< div id = "background" class = "layout" > < / div >
< div id = "ground" class = "layout" > < / div >
< div id = "game" class = "layout" >
< div id = "ship" >
< div class = "ship-canon" > < / div >
< div class = "ship_reactor_fire" id = "ship_reactor" > < / div >
< div class = "ship-reactor" > < / div >
< div class = "ship-foray left" > < / div >
< div class = "ship-foray right" > < / div >
< div class = "ship-body" > < / div >
< div class = "wing left" > < / div >
< div class = "wing right" > < / div >
< / div >
< / div >
< div id = "hud" class = "layout" >
< div class = "orbitron" id = "score" > Score : < span > 0< / span > < / div >
< div class = "orbitron" id = "activeElements" > Active Elements : < span > 0< / span > < / div >
< div class = "orbitron" id = "fpsCounter" > FPS : < span > 0< / span > < / div >
< / div >
< / div >
2011-02-13 13:28:05 +00:00
< div id = "soundManager" class = "" > < / div >
2011-02-13 12:28:40 +00:00
<!-- The footer... -->
< footer id = "credits" class = "" >
< strong > HTML5 Game Jam 2011< / strong > < br >
2011-02-13 12:52:18 +00:00
< strong > < a href = "https://github.com/glenux/wyrian" target = "_blank" title = "View Project on GitHub" class = "game" > ..:: Wyrian v< span id = "version" > 0.2b< / span > ::..< / a > < / strong > | < a href = "http://www.html5place.com/" title = "View my Website" class = "author" > Guillaume DE LA RUE< / a > < br > Thanks to < a href = "https://github.com/glenux" target = "_blank" title = "View profile of Glenux on GitHub" class = "quote" > Glenux< / a > for design and Matthieu Bosquet< br > And everyone present at the HTML5 Game Jam :)
2011-02-13 12:28:40 +00:00
< / footer >
2011-02-13 05:19:58 +00:00
2011-02-13 12:28:40 +00:00
<!-- Main JS Libs -->
< script type = "text/javascript" src = "js/libs/jquery-1.5.js" > < / script >
< script type = "text/javascript" src = "js/libs/require.js" > < / script >
2011-02-13 13:28:05 +00:00
<!-- Sound Library -->
< script type = "text/javascript" src = "js/libs/soundmanager/script/soundmanager2.js" > < / script >
< script type = "text/javascript" src = "js/sounds.load.js" > < / script >
<!-- Game Libs -->
2011-02-13 05:19:58 +00:00
< script type = "text/javascript" src = "js/GameClass.js" > < / script >
2011-02-13 12:28:40 +00:00
< script type = "text/javascript" src = "js/main.js" > < / script >
<!-- ANalytics Tracking -->
< script type = "text/javascript" >
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-12891268-4']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
< / script >
2011-02-11 23:27:34 +00:00
< / body >
2011-02-12 00:06:30 +00:00
< / html >