/rc/index.html
HTML | 48 lines | 29 code | 2 blank | 17 comment | 0 complexity | 372c509137603b4843ef31846263ee00 MD5 | raw file
- <!--
- https://encrypted.google.com/search?hl=en&q=CSS%20side%20by%20side%20divs
- http://my.opera.com/GreyWyvern/blog/show.dml/1725165
- http://www.webdevelopersnotes.com/tutorials/javascript/javascript_for_loop.php3
- http://stackoverflow.com/questions/1134976/how-may-i-sort-a-list-alphabetically-using-jquery
- http://www.pageresource.com/html/link3.htm
- https://duckduckgo.com/?q=center+div
- http://stackoverflow.com/questions/4123067/animating-slider-handle-when-altering-the-jquery-ui-slider-value-option
- https://duckduckgo.com/?q=floating+div+CSS
- http://weblogs.asp.net/jaredroberts/archive/2010/01/12/add-label-to-jquery-slider-handle.aspx
- http://jqueryui.com/demos/slider/
- http://jqueryui.com/demos/slider/#event-create
- http://docs.jquery.com/Tutorials:How_jQuery_Works
- http://api.jquery.com/multiple-selector/
- http://docs.jquery.com/UI/Slider
- -->
- <html>
- <head>
- <link rel="stylesheet" href="css/smoothness/jquery-ui-1.8.17.custom.css" type="text/css">
- <link rel="stylesheet" href="rent_calculator.css" type="text/css">
- <script type="text/javascript" src="js/jquery-1.6.2.min.js"></script>
- <script type="text/javascript" src="js/jquery-ui-1.8.17.custom.min.js"></script>
- <script type="text/javascript" src="rent_calculator.js"></script>
- <!-- Typekit -->
- <script type="text/javascript" src="http://use.typekit.com/qjd5hyy.js"></script>
- <script type="text/javascript">try{Typekit.load();}catch(e){}</script>
- </head>
- <body>
- <div id="container">
- <div id="player1">
- <h2>Alice</h2>
- <h3>How much do you value the rooms?</h3>
- <div id="slider1" style="height: 400px;"></div>
- </div>
- <div id="player2">
- <h2>Bob</h2>
- <p>Almost your turn!</p>
- </div>
- <div id="player3">
- <h2>Charlie</h2>
- <p>It's not quite your turn yet</p>
- </div>
- <div style="clear:both;"></div>
- </div>
- </body>
- </html>