-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-4.html
48 lines (44 loc) · 1.13 KB
/
test-4.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
<link rel="stylesheet" href="css/flexslider.css">
<script type="text/javascript" src="lib/jquery-1.10.1.min.js"></script>
<script src="http://localhost:35729/livereload.js"></script>
<script defer src="js/jquery.flexslider-min.js"></script>
</head>
<body>
<!-- Place somewhere in the <body> of your page -->
<div class="flexslider">
<ul class="slides">
<li>
<img src="images/[email protected]" />
</li>
<li>
<img src="images/[email protected]" />
</li>
<li>
<img src="images/[email protected]" />
</li>
<li>
<img src="images/[email protected]" />
</li>
<!-- items mirrored twice, total of 12 -->
</ul>
</div>
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.7.min.js">\x3C/script>')</script>
<script >
$(window).load(function() {
$('.flexslider').flexslider({
animation: "slide",
animationLoop: false,
itemWidth: 210,
itemMargin: 5,
minItems: 2,
maxItems: 4
});
});
</script>
</body>
</html>