-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit. Source moved from gladius-core.
- Loading branch information
Alan Kligman
committed
May 31, 2012
0 parents
commit f536903
Showing
264 changed files
with
134,835 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<script src="lib/require.js"></script> | ||
<script src="lib/gladius.js"></script> | ||
<script src="src/nocomply.js"></script> | ||
|
||
<style> | ||
body { | ||
/* remove white border */ | ||
margin-top: 0px; | ||
margin-left: 0px; | ||
margin-bottom: 0px; | ||
|
||
/* hide scrollbars */ | ||
overflow-y:hidden; | ||
overflow-x:hidden; | ||
|
||
background: #000; | ||
} | ||
|
||
span{ | ||
color: #FFF; | ||
position: absolute; | ||
left: 50px; | ||
top: 200 px; | ||
} | ||
|
||
#player{ | ||
/* bk color set in js */ | ||
|
||
border-radius: 15px; | ||
border-style: solid; | ||
border-width: 4px; | ||
|
||
/* start hidden since health is zero */ | ||
|
||
opacity: 0.7; | ||
height: 40px; | ||
width: 0px; | ||
|
||
position:absolute; | ||
left: 20px; | ||
top: 20px; | ||
} | ||
|
||
#boss{ | ||
/* bk color set in js */ | ||
|
||
border-radius: 15px; | ||
border-style: solid; | ||
border-width: 4px; | ||
|
||
/* start hidden since health is zero */ | ||
|
||
opacity: 0.7; | ||
width: 0px; | ||
height: 40px; | ||
float: right; | ||
|
||
position:absolute; | ||
right: 20px; | ||
top: 20px; | ||
} | ||
|
||
canvas{ | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="player"></div> | ||
<div id="boss"></div> | ||
<span id="debug"></span> | ||
<canvas id="test-canvas"></canvas> | ||
</body> | ||
</html> |
Oops, something went wrong.