-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (58 loc) · 1.44 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
<!DOCTYPE html>
<head>
<link media="all" rel="stylesheet" type="text/css" href="/reg/templates/css/selectr.css" />
<link media="all" rel="stylesheet" type="text/css" href="/reg/templates/css/chosen.css" />
<style type="text/css">
#wrapper{
display:block;
width:500px;
margin: 0 auto
}
#carousel{
overflow:hidden;
position:relative;
background:green;
margin: 0 auto;
padding: 12px;
height: 124px
}
.children {
background: none repeat scroll 0 0 dimGray;
color: white;
display: inline-block;
position:absolute;
height: 100px;
margin: 1px;
padding: 12px;
vertical-align: top;
width : 100px;
}
</style>
<body>
<section id="wrapper">
<section id="carousel">
<article class="children">
Today is Monday
</article>
<article class="children">
Today is Tuesday
</article>
<article class="children">
Today is Wednesday
</article>
<article class="children">
Today is Thursday
</article>
<article class="children">
Today is Friday
</article>
</section>
</section>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.js"></script>
<script type="text/javascript" src="js/carousel-jquery.js"></script>
<script type="text/javascript" src="js/selectr.js"></script>
<script type="text/javascript">
$("#carousel").carousel();
</script>
</body>
</html>