-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 1.92 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<script language="javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js"></script>
<link rel="stylesheet" type="text/css" href="ctgstyle.css" media="screen" />
<script type="text/javascript" src="ctgslider.js"></script>
<link href='http://fonts.googleapis.com/css?family=Quando' rel='stylesheet' type='text/css'>
<script>
$().ready(function() {
$('#ctgslider').ctgslider({
'timelength':1000,
'showbuttons': 'Y',
'minibuttons':'Y',
'minibuttonopacity': .45,
'centerbuttons': 'Y',
'alignrightnextbutton' : 'Y',
'btnoffset':5 ,
'effects':'slow',
'repeatclass':'.repeat',
'usenumbers':'Y',
'minibtnimagesrc':'images/circle.png'
});
$('#ctgslider2').ctgslider({
'timelength':6000,
'showbuttons': 'Y',
'minibuttons':'Y',
'minibuttonopacity': 1,
'centerbuttons': 'N',
'alignrightnextbutton' : 'Y',
'btnoffset':15 ,
'effects': 'fold',
});
});
</script>
</head>
<body>
<div id="ctgslider">
<div class="repeat"><div class="Caption">Caption 1</div><img src="images/Slider-1.jpg"></div>
<div class="repeat"><div class="Caption">Caption 2</div><img src="images/Slider-2.jpg"></div>
<div class="repeat"><div class="Caption">Caption 3</div><img src="images/Slider-3.jpg"></div>
<div class="repeat"><div class="Caption">Caption 4</div><img src="images/Slider-4.jpg"></div>
</div>
<div id="ctgslider2" style="margin-top:20px;">
<img src="images/Slider-1.jpg">
<img src="images/Slider-2.jpg">
<img src="images/Slider-3.jpg">
<img src="images/Slider-4.jpg">
</div>
</body>
</html>