-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (68 loc) · 1.73 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
https://docs.google.com/document/d/1hbhItV3n_EQZQ-UslDCdDswRcCaVHANAJUANS7-PYP4/edit
-->
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>TODO supply a title</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery-1.10.2.js"></script>
<script src="js/jquery.mkbnSlider-0.0.1.js"></script>
<script>
$(function(){
$('#mkbn').mkbnSlider({
duration: 800,
wait: 2000,
isDurationRandom: true,
isRepeat: false,
});
$('.slider').mkbnSlider({
duration: 500,
wait:800,
isDurationRandom: false,
isRepeat: true,
autoPlay: false
});
});
</script>
<script>
</script>
</head>
<body>
<div id="mkbn">
<ul>
<li style="background-color:red">1</li>
<li style="background-color:blue">2</li>
<li style="background-color:green">3</li>
<li style="background-color:purple">4</li>
<li style="background-color:yellow">5</li>
<li style="background-color:cyan">6</li>
</ul>
</div>
<div style="padding: 10px;"></div>
<div class='ctrl'>
<a href="#prev" class="prev"><</a>
<a href="#next" class="next">></a>
<ol class="pager">
<li></li>
<li></li>
<li></li>
<li></li>
</ol>
</div>
<div class="slider">
<ul>
<li style="background-color:red">1</li>
<li style="background-color:blue">2</li>
<li style="background-color:green">3</li>
<li style="background-color:purple">4</li>
<li style="background-color:yellow">5</li>
<li style="background-color:cyan">6</li>
</ul>
</div>
</body>
</html>