-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (36 loc) · 1.1 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
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js" > </script>
<script src="js/BasicCarousel.js" > </script>
<link rel='stylesheet' href="css/BasicCarousel.css" type="text/css" />
</script>
<style>
</style>
</head>
<body>
<div id="slider">
<ul class="slides">
<li class="slide" >
<img src="http://www.jssor.com/img/home/01.jpg" alt="1" />
</li>
<li class="slide" data-range="2">
<img src="http://www.jssor.com/img/home/02.jpg" alt="2" />
</li >
<li class="slide" data-range="3">
<img src="http://www.jssor.com/img/home/03.jpg" alt="3" />
</li >
<li class="slide" data-range="4">
<img src="http://www.jssor.com/img/home/04.jpg" alt="4" />
</li >
</ul>
</div>
<div class="pager" ></div>
</body>
<script>
$('#slider').BasicCarousel({
pause:2000,
animationSpeed:1000,
autoSlide:true,
pager:true
});
</script>