david-PC\david
2018-06-12 f240ac3ccd37c541cab2c21cfc433d3510999a3c
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
<!DOCTYPE html>
<html>
<head>
<title>日常工作</title>
<meta charset="utf-8" />
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta name="viewport"content="user-scalable=no, initial-scale=1, width=device-width, height=device-height" />
 
<link rel="stylesheet" href="../../css/aui.css" />
<link rel="stylesheet" href="../../css/aui-slide.css" />
 
<script src="../../js/jquery-1.7.2.min.js"></script>
<script src="../../js/foundation-2.0.js"></script>
<script src="../../js/slide.js"></script>
<style type="text/css">
        
</style>
    
 
<script type="text/javascript"> 
    var slide;
    function initSlide() {
        slide = new auiSlide({
            container:document.getElementById("aui-slide"),
            "height":240,
            "speed":500,
            "autoPlay": 3000, //自动播放
            "loop":true,
            "pageShow":true,
            "pageStyle":'line',
            'dotPosition':'center'
        });
    }
 
 
 
    $(document).ready(function() {
        initSlide();
    });
     
</script> 
</head>
 
<body>
        <div id="aui-slide">
        <div class="aui-slide-wrap" >
            <div class="aui-slide-node bg-dark">
                <img src="../image/banner.jpg" />
            </div>
            <div class="aui-slide-node bg-dark">
                <img src="../image/banner2.jpg" />
            </div>
            <div class="aui-slide-node bg-dark">
                <img src="../image/banner3.jpg" />
            </div>
        </div>
        <div class="aui-slide-page-wrap"></div>
    </div>
</body>
</html>