1:
2:
<?php
3:
include 'randombild.php';
4:
?>
5:
6:
<html>
7:
<body>
8:
9:
<head>
10:
<LINK href="randombild.css" rel="stylesheet" type="text/css"></LINK>
11:
12:
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
13:
14:
<script type="text/javascript">
15:
$(document).ready(function(){
16:
$("a#show-panel").click(function(){
17:
$("#lightbox, #lightbox-panel").fadeIn(300);
18:
})
19:
$("a#close-panel").click(function(){
20:
$("#lightbox, #lightbox-panel").fadeOut(300);
21:
})
22:
})
23:
</script>
24:
25:
</head>
26:
27:
<center>
28:
29:
<a id="show-panel" href="#">Show Panel</a>
30:
<div id="lightbox-panel">
31:
32:
<!--INTELIGHTBOX--->
33:
<div id="mainBox">
34:
<div class="echoTable_wrapper">
35:
<table>
36:
<?php
37:
echo $randombild;
38:
?>
39:
</table>
40:
</div>
41:
<img class="bild" src="./Bilder/
42:
<?php echo $randombild; ?>"/>
43:
44:
<FORM action="randombild.php" >
45:
<INPUT class="randombild" TYPE="submit" VALUE="nybild">
46:
</FORM>
47:
</div>
48:
<!--/INTELIGHTBOX--->
49:
50:
<p align="center">
51:
<a id="close-panel" href="#">Close this window</a>
52:
</p>
53:
</div><!-- /lightbox-panel -->
54:
55:
<div id="lightbox"> </div><!-- /lightbox -->
56:
57:
58:
<center>
59:
60:
<footer>
61:
</footer>
62:
63:
</body>
64:
</html>
65: