Created
June 12, 2012 17:07
-
-
Save edmore/2918734 to your computer and use it in GitHub Desktop.
Sound playback loop html 1st draft
This file contains hidden or 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
<html> | |
<head> | |
<title> Sound Loop </title> | |
<style> | |
#container{ font-size: 6em; float: left; } | |
#question{ | |
float: right; | |
border: 1px solid #000; | |
} | |
#question_header{ | |
background-color: blue; | |
text-align: center; | |
color: #FFF; | |
font-weight: bold; | |
} | |
#person{ clear: both; } | |
</style> | |
<script src="jquery-1.7.2.min.js"></script> | |
<script src="array_setTimeout.js"></script> | |
</head> | |
<body> | |
<div id="container"> | |
Loading ..... | |
</div> | |
<div id="question"> | |
<div id="question_header"><span>Questions</span></div> | |
<div id="question_item"><ul></ul></div> | |
</div> | |
<div id="person"> | |
</div> | |
<div id="object"> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment