-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex1.html
41 lines (37 loc) · 1.23 KB
/
index1.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
<html>
<head>
<link rel="stylesheet" href="demo.css" type="text/css"/>
<script src="src/fastclick.js"></script>
<script src="jquery.js"></script>
<script src="src/jquery.easyfader.js"></script>
<script src="src/jquery.easyfader.slide.js"></script>
<script src="src/jquery.easyfader.carousel.js"></script>
<script src="src/jquery.easyfader.swipe.js"></script>
<script>
$(function(){
FastClick.attach(document.body);
$('#Carousel').easyFader({
effect: 'carousel',
effectDur: 5
});
$('#Fader').easyFader({
autoCycle: true,
});
$('#Slider').easyFader({
effect: 'slide',
autoCycle: true
});
});
</script>
</head>
<body>
<div id="Slider" class="fader">
<div class="wrapper">
<img class="slide" src="http://www.barrelny.com/wp-content/uploads/about-office-slide-pingpong2-800x500.jpg"/>
<img class="slide" src="http://www.barrelny.com/wp-content/uploads/about-office-slide-bookcase-800x500.jpg"/>
<img class="slide" src="http://www.barrelny.com/wp-content/uploads/about-office-slide-bikerack-800x500.jpg"/>
<img class="slide" src="http://www.barrelny.com/wp-content/uploads/about-office-slide-kitchen-800x500.jpg"/>
</div>
</div>
</body>
</html>