-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjPicture_dinesh.html
More file actions
27 lines (26 loc) · 887 Bytes
/
jPicture_dinesh.html
File metadata and controls
27 lines (26 loc) · 887 Bytes
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
<html>
<head>
<link rel="stylesheet" href="jpicture_plugin/picture_carousel.css" type="text/css" charset="utf-8" />
<script src = "http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript" src = "jpicture_plugin/picture_carousel.js">
</script>
<script type="text/javascript">
$(function () {
var imageElement = $('.image');
if(imageElement && imageElement.children().size() > 0){
imageElement.jPicture_plugin();
}
});
</script>
</head>
<body>
<ul class = "image">
<li><h3>Dinesh</h3><img src = "images/11.jpg"></li>
<li><img src = "images/12.jpg"></li>
<li><img src = "images/13.jpg"></li>
<li><img src = "images/14.jpg"></li>
<li><img src = "images/16.jpg"></li>
<li><img src = "images/17.jpg"></li>
</ul>
</body>
</html>