-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1004 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="staticimages/css.css">
</head>
<body>
<div id="sliding">
<div class="left-point">
<ul>
<li class="active"></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<div class="content">
<div class="content-l">
<div class="item" style="background-color: #FF0000;">
<p>1</p>
</div>
<div class="item" style="background-color: #F7ECB5;">
<p>2</p>
</div>
<div class="item" style="background-color: #D0E9C6;">
<p>3</p>
</div>
<div class="item" style="background-color: #333333;">
<p>4</p>
</div>
<div class="item" style="background-color: #F2DEDE;">
<p>5</p>
</div>
</div>
</div>
</div>
<script src="staticimages/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="staticimages/js.js"></script>
</body>
</html>