-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (28 loc) · 1.06 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html><head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>Image Viewer</title>
<link href="./main.css" type="text/css" rel="stylesheet" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="./main.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(e) {
$(document).AMIImageViewer();
});
</script>
</head>
<body>
<br>
This is the index file AJAX My Images
<br>
<div id="container" style="width:500px; height:350px; border:1px solid black;">
<div id="images" style="width:500px; height:300px; border:1px solid red;" >
<img src="/home/jkeczan/Pictures/backgrounds/bk1.jpg" class="AMITest" />
<img src="/home/jkeczan/Pictures/backgrounds/bk2.jpg" class="AMITest" />
<img src="/home/jkeczan/Pictures/backgrounds/bk3.jpg" class="AMITest" />
</div>
<div id="controls" style="width:500px; height:50px; border:1px solid blue;">
</div>
</div>
<br>
</body></html>