多单位版国产化地质资料管理系统
zs
2025-12-18 4f0d9bde31a80f6279e26466250da7716eec627f
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
 
 
!(function (global, $, factory) {
 
    typeof exports == "object" && typeof module != "undefined" ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global.LandscapeSlider = factory());
})(this, jQuery, function () {
 
    var LandscapeSlider = function (options) {
        if (!(this instanceof LandscapeSlider)) {
            console.log("LandscapeSlider 是一个构造函数,应该用new关键字调用");
            return;
        }
 
        var _DEFALUTS_ = {
            g_bMoveLeft: true,
            g_oTimer: null,
            g_oTimerOut: null,
            g_bPause: true,
            g_iPauseTime: 1000,
            g_iSpeed: 2,
            id: "",
            limit: 0
        }
        $.extend(true, _DEFALUTS_, options || {});
 
        var oDiv = document.getElementById(_DEFALUTS_.id);
 
        if (!oDiv) return;
 
        var oUl = oDiv.getElementsByTagName('ul')[0];
 
        var aLi = oDiv.getElementsByTagName('li');
 
 
       // var liHeight=$(aLi[0]).outerHeight(true));
        if (_DEFALUTS_.limit != 0) {
            if (aLi.length <= _DEFALUTS_.limit) {
                return;
            }
        }
        var i = 0;
 
        var str = oUl.innerHTML + oUl.innerHTML;
 
        oUl.innerHTML = str;
        //oUl.style.height = $(aLi[0]).outerHeight(true) * aLi.length + 'px';
        oUl.style.width=$(aLi[0]).outerWidth(true)*aLi.length+'px';
 
        for (i = 0; i < aLi.length; i++) {
 
            aLi[i].onmouseover = function () {
                stopMove();
            };
 
            aLi[i].onmouseout = function () {
                startMove(_DEFALUTS_.g_bMoveLeft);
            };
        }
 
        startMove(true);
 
        function startMove(bLeft) {
            _DEFALUTS_.g_bMoveLeft = bLeft;
 
            if (_DEFALUTS_.g_oTimer) {
                clearInterval(_DEFALUTS_.g_oTimer);
            }
            _DEFALUTS_.g_oTimer = setInterval(doMove, 30);
        }
 
        function stopMove() {
            clearInterval(_DEFALUTS_.g_oTimer);
            _DEFALUTS_.g_oTimer = null;
        }
 
        function doMove()
        {
            var oDiv=document.getElementById(_DEFALUTS_.id);
            var oUl=oDiv.getElementsByTagName('ul')[0];
            var aLi=oUl.getElementsByTagName('li');
            
            var l=oUl.offsetLeft;
            
            if(_DEFALUTS_.g_bMoveLeft)
            {
                l-=_DEFALUTS_.g_iSpeed;
                if(l<=-oUl.offsetWidth/2)
                {
                    l+=oUl.offsetWidth/2;
                }
            }
            else
            {
                l+=_DEFALUTS_.g_iSpeed;
                if(l>=0)
                {
                    l-=oUl.offsetWidth/2;
                }
            }
            
            if(_DEFALUTS_.g_bPause)
            { 
                if(Math.abs(l-Math.round(l/aLi[0].offsetWidth)*aLi[0].offsetWidth)<Math.ceil(_DEFALUTS_.g_iSpeed/2))
                {
                    stopMove();
                    _DEFALUTS_.g_oTimerOut=setTimeout
                    (
                        function ()
                        {
                            startMove(_DEFALUTS_.g_bMoveLeft);
                        }, _DEFALUTS_.g_iPauseTime
                    );
                    
                    l=Math.round(l/aLi[0].offsetWidth)*aLi[0].offsetWidth;
                }
            }
            
            oUl.style.left=l+'px';
        }
 
 
    }
 
 
 
    return LandscapeSlider;
 
})