Mercurial > laserkard
diff stack.html @ 94:0f19af92260e laserkard
saving progress.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Mon, 26 Jul 2010 20:33:17 -0400 |
parents | |
children |
line wrap: on
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/stack.html Mon Jul 26 20:33:17 2010 -0400 1.3 @@ -0,0 +1,45 @@ 1.4 +<html> 1.5 + <head> 1.6 + <link type="text/css" href="./stack.css" rel="stylesheet"/> 1.7 + </head> 1.8 + 1.9 + <body> 1.10 + <input type="button" id='btn1' value="Hide Something" /> 1.11 + <div style=" background-image:url('./buy-images/select-blue.png'); background-repeat:repeat-x; border-style:solid;height:1000px;width:100%"> 1.12 + <div id="div3" class="transparentDiv" style=" margin-top:30px; padding-left:300px;background-color: #4ddfff; height: 100px;position:absolute; width:950px"> 1.13 + <br /> 1.14 + <br /> 1.15 + <br /> 1.16 + 1.17 + </div> 1.18 + <div id="div2" class="transparentDiv"> 1.19 + 1.20 + 1.21 + 1.22 + 1.23 + <h1></h1> 1.24 + 1.25 + 1.26 + 1.27 + </div> 1.28 + 1.29 + </div> 1.30 + 1.31 + 1.32 + <script src="http://jquery.com/src/jquery-latest.js"></script> 1.33 + <script type="text/javascript"> 1.34 + 1.35 + $(function() { 1.36 + 1.37 + $("#table1 tbody tr:even").addClass('zebra'); 1.38 + $("#btn1").click(function() { 1.39 + 1.40 + $('#div2').toggle(400); return false; 1.41 + }); 1.42 + 1.43 + }); 1.44 + 1.45 + 1.46 + </script> 1.47 + </body> 1.48 +</html>