-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgalleryTest.html
More file actions
56 lines (52 loc) · 1.05 KB
/
Copy pathgalleryTest.html
File metadata and controls
56 lines (52 loc) · 1.05 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Sehome Seamonsters</title>
<meta charset='UTF-8'>
<script type="text/javascript" src='http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js'></script>
<script type="text/javascript" src='./js/jquery.carouFredSel-6.2.1-packed.js'></script>
<script type="text/javascript">
$(document).ready(function() {
$('#gallery').carouFredSel({
items: 2,
});
});
</script>
<style type="text/css">
#galleryContainer {
width: 500px;
height: 100px;
background-color: fuchsia;
}
#gallery {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
list-style: none;
background-color: blue;
}
#gallery li {
background-color: yellow;
width: 50px;
height: 50px;
display: block;
float: left;
}
.clearfix {
float: none;
clear: both;
}
</style>
</head>
<body>
<div id='galleryContainer'>
<ul id='gallery'>
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
<div class='clearfix'></div>
</div>
</body>
</html>