-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing.html
executable file
·43 lines (36 loc) · 1.4 KB
/
landing.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
<!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>
<style> .layout {width:1140px;height:auto;margin:0px auto;}
</style>
<!-- load jQuery and the plugin -->
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="common/js/bjqs-1.3.min.js"></script>
<link rel="stylesheet" href="common/css/landing_slider.css">
<script class="secret-source">
jQuery(document).ready(function($) {
$('#banner-fade').bjqs({
height : 268,
width : 1140,
responsive : true
});
});
</script>
</head>
<body>
<div class="layout">
<div id="banner-fade">
<!-- start Basic Jquery Slider -->
<ul class="bjqs">
<li><img src="common/images/banner01.jpg" title="Automatically generated caption"></li>
<li><img src="common/images/banner02.jpg" title="Automatically generated caption"></li>
<li><img src="common/images/banner03.jpg" title="Automatically generated caption"></li>
<li><img src="common/images/banner03.jpg" title="Automatically generated caption"></li>
</ul>
<!-- end Basic jQuery Slider -->
</div>
</div>
</body>
</html>