-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
77 lines (70 loc) · 2.98 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="language" content="en"/>
<meta name="description" content="" />
<meta name="keywords" content="" />
<title>jQuery Skim</title>
<link rel="stylesheet" href="css/reset.css" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="css/skim.css" type="text/css" media="screen" charset="utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.skim.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(window).bind("load", function() {
$(".skim-me").skim();
});
});
</script>
</head>
<body>
<div id="container">
<h1>jQuery Skim</h1>
<p>This is what the widget looks like. Note that all images should be the same size.<br />
The jQuery plugin is released under the MIT License.<br />
Images used on this page © 2009 Jan Vantomme, All Rights Reserved.</p>
<div class="preview">
<div class="skim-me">
<h3>My Images</h3>
<ul>
<li><a href="#"><img src="images/001.jpg" width="150" height="150" alt="" /></a></li>
<li><a href="#"><img src="images/002.jpg" width="150" height="150" alt="" /></a></li>
<li><a href="#"><img src="images/003.jpg" width="150" height="150" alt="" /></a></li>
<li><a href="#"><img src="images/004.jpg" width="150" height="150" alt="" /></a></li>
<li><a href="#"><img src="images/005.jpg" width="150" height="150" alt="" /></a></li>
</ul>
</div>
</div>
<h2>HTML</h2>
<div class="preview">
<pre><code>
<div class="skim-me">
<h3>My Images</h3>
<ul>
<li><a href="#"><img src="images/001.jpg" width="150" height="150" alt="Image 1" /></a></li>
<li><a href="#"><img src="images/002.jpg" width="150" height="150" alt="Image 2" /></a></li>
<li><a href="#"><img src="images/003.jpg" width="150" height="150" alt="Image 3" /></a></li>
<li><a href="#"><img src="images/004.jpg" width="150" height="150" alt="Image 4" /></a></li>
<li><a href="#"><img src="images/005.jpg" width="150" height="150" alt="Image 5" /></a></li>
</ul>
</div>
</code></pre>
</div>
<h2>JavaScript</h2>
<div class="preview">
<pre><code>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.skim.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(window).bind("load", function() {
$(".skim-me").skim();
});
});
</script>
</code></pre>
</div>
</div>
</body>
</html>