-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslider.html
More file actions
38 lines (33 loc) · 916 Bytes
/
Copy pathslider.html
File metadata and controls
38 lines (33 loc) · 916 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Home</title>
<title>Look</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="menu.css">
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquerycycle.js"></script>
<script type="text/javascript">
$('#slider').cycle({
fx: 'scrollHorz',
next: '#next',
prev: '#prev',
timeout: 300
pause: 1
});
</script>
</head>
<body>
<div id="next">⟩</div>
<div id="prev">⟨</div>
<div id="slider">
<img src="1.png" width="90" height="50">
<img src="2.png" width="90" height="50">
<img src="3.png" width="90" height="50">
<img src="4.png" width="90" height="50">
<img src="5.png" width="90" height="50">
<img src="6.png" width="90" height="50">
</div>
</body>
</html>