username@email.com
2025-02-24 429d9ffb4bd7607b83b0ce8b89c07441fb0d0f57
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
/*
* @classDescription 超级Marquee,可做图片导航,图片轮换
* @author Aken Li(www.kxbd.com)
* @date 2009-07-27
* @dependence jQuery 1.3.2
* @DOM
*      <div id="marquee">
*          <ul>
*               <li></li>
*               <li></li>
*          </ul>
*      </div>
* @CSS
*      #marquee {width:200px;height:50px;overflow:hidden;}
* @Usage
*      $('#marquee').kxbdSuperMarquee(options);
* @options
*        distance:200,//一次滚动的距离
*        duration:20,//缓动效果,单次移动时间,越小速度越快,为0时无缓动效果
*        time:5,//停顿时间,单位为秒
*        direction: 'left',//滚动方向,'left','right','up','down'
*        scrollAmount:1,//步长
*        scrollDelay:20//时长,单位为毫秒
*        isEqual:true,//所有滚动的元素长宽是否相等,true,false
*        loop: 0,//循环滚动次数,0时无限
*        btnGo:{left:'#goL',right:'#goR'},//控制方向的按钮ID,有四个属性left,right,up,down分别对应四个方向
*        eventGo:'click',//鼠标事件
*        controlBtn:{left:'#goL',right:'#goR'},//控制加速滚动的按钮ID,有四个属性left,right,up,down分别对应四个方向
*        newAmount:4,//加速滚动的步长s
*        eventA:'mouseenter',//鼠标事件,加速
*        eventB:'mouseleave',//鼠标事件,原速
*        navId:'#marqueeNav', //导航容器ID,导航DOM:<ul><li>1</li><li>2</li><ul>,导航CSS:.navOn
*        eventNav:'click' //导航事件
*/
(function ($) {
 
    $.fn.kxbdSuperMarquee = function (options) {
        var opts = $.extend({}, $.fn.kxbdSuperMarquee.defaults, options);
 
        return this.each(function () {
            var $marquee = $(this); //滚动元素容器
            var _scrollObj = $marquee.get(0); //滚动元素容器DOM
            var scrollW = $marquee.width(); //滚动元素容器的宽度
            var scrollH = $marquee.height(); //滚动元素容器的高度
            var $element = $marquee.children(); //滚动元素
            var $kids = $element.children(); //滚动子元素
            var scrollSize = 0; //滚动元素尺寸
            var _type = (opts.direction == 'left' || opts.direction == 'right') ? 1 : 0; //滚动类型,1左右,0上下
            var scrollId, rollId, isMove, marqueeId;
            var t, b, c, d, e; //滚动动画的参数,t:当前时间,b:开始的位置,c:改变的位置,d:持续的时间,e:结束的位置
            var _size, _len; //子元素的尺寸与个数
            var $nav, $navBtns;
            var arrPos = [];
            var numView = 0; //当前所看子元素
            var numRoll = 0; //轮换的次数
            var numMoved = 0; //已经移动的距离
 
            //防止滚动子元素比滚动元素宽而取不到实际滚动子元素宽度
            $element.css(_type ? 'width' : 'height', 10000);
            //获取滚动元素的尺寸
            var navHtml = '<ul>';
            if (opts.isEqual) {
                _size = $kids[_type ? 'outerWidth' : 'outerHeight']();
                _len = $kids.length;
                scrollSize = _size * _len;
                for (var i = 0; i < _len; i++) {
                    arrPos.push(i * _size);
                    navHtml += '<li>' + (i + 1) + '</li>';
                }
            } else {
                $kids.each(function (i) {
                    arrPos.push(scrollSize);
                    scrollSize += $(this)[_type ? 'outerWidth' : 'outerHeight']();
                    navHtml += '<li>' + (i + 1) + '</li>';
                });
            }
            navHtml += '</ul>';
 
            //滚动元素总尺寸小于容器尺寸,不滚动
            if (scrollSize < (_type ? scrollW : scrollH)) return;
            //克隆滚动子元素将其插入到滚动元素后,并设定滚动元素宽度
            $element.append($kids.clone()).css(_type ? 'width' : 'height', scrollSize * 2);
 
            //轮换导航
            if (opts.navId) {
                $nav = $(opts.navId).append(navHtml).hover(stop, start);
                $navBtns = $('li', $nav);
                $navBtns.each(function (i) {
                    $(this).bind(opts.eventNav, function () {
                        if (isMove) return;
                        if (numView == i) return;
                        rollFunc(arrPos[i]);
                        $navBtns.eq(numView).removeClass('navOn');
                        numView = i;
                        $(this).addClass('navOn');
                    });
                });
                $navBtns.eq(numView).addClass('navOn');
            }
 
            //设定初始位置
            if (opts.direction == 'right' || opts.direction == 'down') {
                _scrollObj[_type ? 'scrollLeft' : 'scrollTop'] = scrollSize;
            } else {
                _scrollObj[_type ? 'scrollLeft' : 'scrollTop'] = 0;
            }
 
            if (opts.isMarquee) {
                //滚动开始
                //marqueeId = setInterval(scrollFunc, opts.scrollDelay);
                marqueeId = setTimeout(scrollFunc, opts.scrollDelay);
                //鼠标划过停止滚动
                $marquee.hover(
                    function () {
                        clearInterval(marqueeId);
                    },
                    function () {
                        //marqueeId = setInterval(scrollFunc, opts.scrollDelay);
                        clearInterval(marqueeId);
                        marqueeId = setTimeout(scrollFunc, opts.scrollDelay);
                    }
                );
 
                //控制加速运动
                if (opts.controlBtn) {
                    $.each(opts.controlBtn, function (i, val) {
                        $(val).bind(opts.eventA, function () {
                            opts.direction = i;
                            opts.oldAmount = opts.scrollAmount;
                            opts.scrollAmount = opts.newAmount;
                        }).bind(opts.eventB, function () {
                            opts.scrollAmount = opts.oldAmount;
                        });
                    });
                }
            } else {
                if (opts.isAuto) {
                    //轮换开始
                    start();
 
                    //鼠标划过停止轮换
                    $marquee.hover(stop, start);
                }
 
                //控制前后走
                if (opts.btnGo) {
                    $.each(opts.btnGo, function (i, val) {
                        $(val).bind(opts.eventGo, function () {
                            if (isMove == true) return;
                            opts.direction = i;
                            rollFunc();
                            if (opts.isAuto) {
                                stop();
                                start();
                            }
                        });
                    });
                }
            }
 
            function scrollFunc() {
                var _dir = (opts.direction == 'left' || opts.direction == 'right') ? 'scrollLeft' : 'scrollTop';
 
                if (opts.isMarquee) {
                    if (opts.loop > 0) {
                        numMoved += opts.scrollAmount;
                        if (numMoved > scrollSize * opts.loop) {
                            _scrollObj[_dir] = 0;
                            return clearInterval(marqueeId);
                        }
                    }
                    var newPos = _scrollObj[_dir] + (opts.direction == 'left' || opts.direction == 'up' ? 1 : -1) * opts.scrollAmount;
                } else {
                    if (opts.duration) {
                        if (t++ < d) {
                            isMove = true;
                            var newPos = Math.ceil(easeOutQuad(t, b, c, d));
                            if (t == d) {
                                newPos = e;
                            }
                        } else {
                            newPos = e;
                            clearInterval(scrollId);
                            isMove = false;
                            return;
                        }
                    } else {
                        var newPos = e;
                        clearInterval(scrollId);
                    }
                }
 
                if (opts.direction == 'left' || opts.direction == 'up') {
                    if (newPos >= scrollSize) {
                        newPos -= scrollSize;
                    }
                } else {
                    if (newPos <= 0) {
                        newPos += scrollSize;
                    }
                }
                _scrollObj[_dir] = newPos;
 
                if (opts.isMarquee) {
                    marqueeId = setTimeout(scrollFunc, opts.scrollDelay);
                } else if (t < d) {
                    if (scrollId) clearTimeout(scrollId);
                    scrollId = setTimeout(scrollFunc, opts.scrollDelay);
                } else {
                    isMove = false;
                }
 
            };
 
            function rollFunc(pPos) {
                isMove = true;
                var _dir = (opts.direction == 'left' || opts.direction == 'right') ? 'scrollLeft' : 'scrollTop';
                var _neg = opts.direction == 'left' || opts.direction == 'up' ? 1 : -1;
 
                numRoll = numRoll + _neg;
                //得到当前所看元素序号并改变导航CSS
                if (pPos == undefined && opts.navId) {
                    $navBtns.eq(numView).removeClass('navOn');
                    numView += _neg;
                    if (numView >= _len) {
                        numView = 0;
                    } else if (numView < 0) {
                        numView = _len - 1;
                    }
                    $navBtns.eq(numView).addClass('navOn');
                    numRoll = numView;
                }
 
                var _temp = numRoll < 0 ? scrollSize : 0;
                t = 0;
                b = _scrollObj[_dir];
                //c=(pPos != undefined)?pPos:_neg*opts.distance;
                e = (pPos != undefined) ? pPos : _temp + (opts.distance * numRoll) % scrollSize;
                if (_neg == 1) {
                    if (e > b) {
                        c = e - b;
                    } else {
                        c = e + scrollSize - b;
                    }
                } else {
                    if (e > b) {
                        c = e - scrollSize - b;
                    } else {
                        c = e - b;
                    }
                }
                d = opts.duration;
 
                //scrollId = setInterval(scrollFunc, opts.scrollDelay);
                if (scrollId) clearTimeout(scrollId);
                scrollId = setTimeout(scrollFunc, opts.scrollDelay);
            }
 
            function start() {
                rollId = setInterval(function () {
                    rollFunc();
                }, opts.time * 1000);
            }
            function stop() {
                clearInterval(rollId);
            }
 
            function easeOutQuad(t, b, c, d) {
                return -c * (t /= d) * (t - 2) + b;
            }
 
            function easeOutQuint(t, b, c, d) {
                return c * ((t = t / d - 1) * t * t * t * t + 1) + b;
            }
 
        });
    };
    $.fn.kxbdSuperMarquee.defaults = {
        isMarquee: false, //是否为Marquee
        isEqual: true, //所有滚动的元素长宽是否相等,true,false
        loop: 0, //循环滚动次数,0时无限
        newAmount: 3, //加速滚动的步长
        eventA: 'mousedown', //鼠标事件,加速
        eventB: 'mouseup', //鼠标事件,原速
        isAuto: true, //是否自动轮换
        time: 5, //停顿时间,单位为秒
        duration: 50, //缓动效果,单次移动时间,越小速度越快,为0时无缓动效果
        eventGo: 'click', //鼠标事件,向前向后走
        direction: 'left', //滚动方向,'left','right','up','down'
        scrollAmount: 1, //步长
        scrollDelay: 10, //时长
        eventNav: 'click'//导航事件
    };
 
    $.fn.kxbdSuperMarquee.setDefaults = function (settings) {
        $.extend($.fn.kxbdSuperMarquee.defaults, settings);
    };
 
})(jQuery);