Форум программистов, компьютерный форум, киберфорум
jQuery
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.70/30: Рейтинг темы: голосов - 30, средняя оценка - 4.70
38 / 38 / 2
Регистрация: 13.06.2012
Сообщений: 650
1

Не доходит скролл до конца Jscrollpane

31.01.2014, 00:12. Показов 5824. Ответов 10
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Здравствуйте, вот пример http://dodi.vv.si . Скролл не доходит до конца, я так его вроде как отстилизировал, причина как я понял в js, только где и что править нужно. Там получается он изначально расчитан на определенную высоту блока..
Прилагаю в архиве его и код:

HTML5
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
<!DOCTYPE html>
<html>
<head>
<title>Верстка сайта</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/res_css.css">
<link rel="stylesheet" type="text/css" href="css/css.css">
<link rel="stylesheet" type="text/css" href="css/jScrollPane.css">
 
<script type="text/javascript" src="jquery-1.2.6.js"></script>
<script type="text/javascript" src="js/jquery.mousewheel.min.js"></script>
<script type="text/javascript" src="js/jScrollPane.js"></script>
 
<script type="text/javascript">
    jQuery(function()
    {
        jQuery('#pane').jScrollPane({scrollbarWidth:18, showArrows:true});
    });
</script>
 
 
<!--[if lt IE 9]>
        <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
 
 
</head>
<body>
<div class="scrollBox">
    <div id="pane" class="scroll-pane">
        ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>
        ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>
        ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>
        ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>
        ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>
        ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>
        ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>
        ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>
        ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>
        ddfd<br>ddfd<br>ddfd<br>ddfd<br>ddfd<br>
    </div>
</div>
 
 
 
</body>
</html>
.css.css
CSS
1
2
3
4
5
6
7
8
9
body {
    margin: 0;
}
 
.scroll-pane {
    width: auto !important;
    height: 275px;
    overflow: auto;
}
jScrollPane.css
CSS
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
.jScrollPaneContainer {
    position: absolute;
    overflow: hidden;
    z-index: 1;
    width: 100% !important;
    height: 100% !important;
}
 
 
.jScrollPaneTrack {
    position: absolute;
    cursor: pointer;
    right: 0;
    top: 0;
    height: 100% !important;
    background: url(../images/scrollTrak.gif) repeat-y;
}
.jScrollPaneDrag {
    position: absolute;
    background: url(../images/scrollDrag.gif) repeat-y;
    cursor: pointer;
    overflow: hidden;
    left:1px;
}
 
.jScrollPaneDragTop {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background: url(../images/scrollDragTop.gif) no-repeat;
    height:3px;
}
 
.jScrollPaneDragBottom {
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    background: url(../images/scrollDragBot.gif) no-repeat;
    height:3px;
}
 
a.jScrollArrowUp {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    text-indent: -2000px;
    overflow: hidden;
    height: 18px;
    background: url(../images/arrow_up.gif) no-repeat;
}
 
a.jScrollArrowDown {
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
    text-indent: -2000px;
    overflow: hidden;
    height: 18px;
    background: url(../images/arrow_down.gif) no-repeat;
}
jquery.mousewheel.min.js
Javascript
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
/* Copyright (c) 2006 Brandon Aaron (brandon.aaron@gmail.com || [url]http://brandonaaron.net[/url])
 * Dual licensed under the MIT ([url]http://www.opensource.org/licenses/mit-license.php[/url])
 * and GPL ([url]http://www.opensource.org/licenses/gpl-license.php[/url]) licenses.
 * Thanks to: [url]http://adomas.org/javascript-mouse-wheel/[/url] for some pointers.
 * Thanks to: Mathias Bank([url]http://www.mathias-bank.de[/url]) for a scope bug fix.
 *
 * jQueryLastChangedDate: 2007-12-20 09:02:08 -0600 (Thu, 20 Dec 2007) jQuery
 * jQueryRev: 4265 jQuery
 *
 * Version: 3.0
 * 
 * Requires: jQuery 1.2.2+
 */
 
(function(jQuery) {
 
jQuery.event.special.mousewheel = {
    setup: function() {
        var handler = jQuery.event.special.mousewheel.handler;
        
        // Fix pageX, pageY, clientX and clientY for mozilla
        if ( jQuery.browser.mozilla )
            jQuery(this).bind('mousemove.mousewheel', function(event) {
                jQuery.data(this, 'mwcursorposdata', {
                    pageX: event.pageX,
                    pageY: event.pageY,
                    clientX: event.clientX,
                    clientY: event.clientY
                });
            });
    
        if ( this.addEventListener )
            this.addEventListener( (jQuery.browser.mozilla ? 'DOMMouseScroll' : 'mousewheel'), handler, false);
        else
            this.onmousewheel = handler;
    },
    
    teardown: function() {
        var handler = jQuery.event.special.mousewheel.handler;
        
        jQuery(this).unbind('mousemove.mousewheel');
        
        if ( this.removeEventListener )
            this.removeEventListener( (jQuery.browser.mozilla ? 'DOMMouseScroll' : 'mousewheel'), handler, false);
        else
            this.onmousewheel = function(){};
        
        jQuery.removeData(this, 'mwcursorposdata');
    },
    
    handler: function(event) {
        var args = Array.prototype.slice.call( arguments, 1 );
        
        event = jQuery.event.fix(event || window.event);
        // Get correct pageX, pageY, clientX and clientY for mozilla
        jQuery.extend( event, jQuery.data(this, 'mwcursorposdata') || {} );
        var delta = 0, returnValue = true;
        
        if ( event.wheelDelta ) delta = event.wheelDelta/120;
        if ( event.detail     ) delta = -event.detail/3;
//      if ( jQuery.browser.opera  ) delta = -event.wheelDelta;
        
        event.data  = event.data || {};
        event.type  = "mousewheel";
        
        // Add delta to the front of the arguments
        args.unshift(delta);
        // Add event to the front of the arguments
        args.unshift(event);
 
        return jQuery.event.handle.apply(this, args);
    }
};
 
jQuery.fn.extend({
    mousewheel: function(fn) {
        return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel");
    },
    
    unmousewheel: function(fn) {
        return this.unbind("mousewheel", fn);
    }
});
 
})(jQuery);
jScrollPane.js
Javascript
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
/* Copyright (c) 2009 Kelvin Luck (kelvin AT kelvinluck DOT com || [url]http://www.kelvinluck.com[/url])
 * Dual licensed under the MIT ([url]http://www.opensource.org/licenses/mit-license.php[/url]) 
 * and GPL ([url]http://www.opensource.org/licenses/gpl-license.php[/url]) licenses.
 * 
 * See [url]http://kelvinluck.com/assets/jquery/jScrollPane/[/url]
 * $Id: jScrollPane.js 86 2009-08-30 21:45:11Z [email]kelvin.luck@gmail.com[/email] $
 */
 
/**
 * Replace the vertical scroll bars on any matched elements with a fancy
 * styleable (via CSS) version. With JS disabled the elements will
 * gracefully degrade to the browsers own implementation of overflow:auto.
 * If the mousewheel plugin has been included on the page then the scrollable areas will also
 * respond to the mouse wheel.
 *
 * @example jQuery(".scroll-pane").jScrollPane();
 *
 * @name jScrollPane
 * @type jQuery
 * @param Object    settings    hash with options, described below.
 *                              scrollbarWidth  -   The width of the generated scrollbar in pixels
 *                              scrollbarMargin -   The amount of space to leave on the side of the scrollbar in pixels
 *                              wheelSpeed      -   The speed the pane will scroll in response to the mouse wheel in pixels
 *                              showArrows      -   Whether to display arrows for the user to scroll with
 *                              arrowSize       -   The height of the arrow buttons if showArrows=true
 *                              animateTo       -   Whether to animate when calling scrollTo and scrollBy
 *                              dragMinHeight   -   The minimum height to allow the drag bar to be
 *                              dragMaxHeight   -   The maximum height to allow the drag bar to be
 *                              animateInterval -   The interval in milliseconds to update an animating scrollPane (default 100)
 *                              animateStep     -   The amount to divide the remaining scroll distance by when animating (default 3)
 *                              maintainPosition-   Whether you want the contents of the scroll pane to maintain it's position when you re-initialise it - so it doesn't scroll as you add more content (default true)
 *                              tabIndex        -   The tabindex for this jScrollPane to control when it is tabbed to when navigating via keyboard (default 0)
 *                              enableKeyboardNavigation - Whether to allow keyboard scrolling of this jScrollPane when it is focused (default true)
 *                              animateToInternalLinks - Whether the move to an internal link (e.g. when it's focused by tabbing or by a hash change in the URL) should be animated or instant (default false)
 *                              scrollbarOnLeft -   Display the scrollbar on the left side?  (needs stylesheet changes, see examples.html)
 *                              reinitialiseOnImageLoad - Whether the jScrollPane should automatically re-initialise itself when any contained images are loaded (default false)
 *                              topCapHeight    -   The height of the "cap" area between the top of the jScrollPane and the top of the track/ buttons
 *                              bottomCapHeight -   The height of the "cap" area between the bottom of the jScrollPane and the bottom of the track/ buttons
 * @return jQuery
 * @cat Plugins/jScrollPane
 * @author Kelvin Luck (kelvin AT kelvinluck DOT com || [url]http://www.kelvinluck.com[/url])
 */
 
(function($) {
 
$.jScrollPane = {
    active : []
};
$.fn.jScrollPane = function(settings)
{
    settings = $.extend({}, $.fn.jScrollPane.defaults, settings);
 
    var rf = function() { return false; };
    
    return this.each(
        function()
        {
            var $this = $(this);
            var paneEle = this;
            var currentScrollPosition = 0;
            var paneWidth;
            var paneHeight;
            var trackHeight;
            var trackOffset = settings.topCapHeight;
            
            if ($(this).parent().is('.jScrollPaneContainer')) {
                currentScrollPosition = settings.maintainPosition ? $this.position().top : 0;
                var $c = $(this).parent();
                paneWidth = $c.innerWidth();
                paneHeight = $c.outerHeight();
                $('>.jScrollPaneTrack, >.jScrollArrowUp, >.jScrollArrowDown, >.jScollCap', $c).remove();
                $this.css({'top':0});
            } else {
                $this.data('originalStyleTag', $this.attr('style'));
                // Switch the element's overflow to hidden to ensure we get the size of the element without the scrollbars [[url]http://plugins.jquery.com/node/1208][/url]
 
                $this.css('overflow', 'hidden');
                this.originalPadding = $this.css('paddingTop') + ' ' + $this.css('paddingRight') + ' ' + $this.css('paddingBottom') + ' ' + $this.css('paddingLeft');
                this.originalSidePaddingTotal = (parseInt($this.css('paddingLeft')) || 0) + (parseInt($this.css('paddingRight')) || 0);
                paneWidth = $this.innerWidth();
                paneHeight = $this.innerHeight();
                var $container = $('<div></div>')
                    .attr({'className':'jScrollPaneContainer'})
                    .css(
                        {
                            'height':paneHeight+'px', 
                            'width':paneWidth+'px'
                        }
                    );
                if (settings.enableKeyboardNavigation) {
                    $container.attr(
                        'tabindex', 
                        settings.tabIndex
                    );
                }
                $this.wrap($container);
                // deal with text size changes (if the jquery.em plugin is included)
                // and re-initialise the scrollPane so the track maintains the
                // correct size
                $(document).bind(
                    'emchange', 
                    function(e, cur, prev)
                    {
                        $this.jScrollPane(settings);
                    }
                );
                
            }
            trackHeight = paneHeight;
            
            if (settings.reinitialiseOnImageLoad) {
                // code inspired by jquery.onImagesLoad: [url]http://plugins.jquery.com/project/onImagesLoad[/url]
                // except we re-initialise the scroll pane when each image loads so that the scroll pane is always up to size...
                // TODO: Do I even need to store it in $.data? Is a local variable here the same since I don't pass the reinitialiseOnImageLoad when I re-initialise?
                var $imagesToLoad = $.data(paneEle, 'jScrollPaneImagesToLoad') || $('img', $this);
                var loadedImages = [];
                
                if ($imagesToLoad.length) {
                    $imagesToLoad.each(function(i, val) {
                        $(this).bind('load readystatechange', function() {
                            if($.inArray(i, loadedImages) == -1){ //don't double count images
                                loadedImages.push(val); //keep a record of images we've seen
                                $imagesToLoad = $.grep($imagesToLoad, function(n, i) {
                                    return n != val;
                                });
                                $.data(paneEle, 'jScrollPaneImagesToLoad', $imagesToLoad);
                                var s2 = $.extend(settings, {reinitialiseOnImageLoad:false});
                                $this.jScrollPane(s2); // re-initialise
                            }
                        }).each(function(i, val) {
                            if(this.complete || this.complete===undefined) { 
                                //needed for potential cached images
                                this.src = this.src; 
                            } 
                        });
                    });
                };
            }
 
            var p = this.originalSidePaddingTotal;
            var realPaneWidth = paneWidth - settings.scrollbarWidth - settings.scrollbarMargin - p;
 
            var cssToApply = {
                'height':'auto',
                'width': realPaneWidth + 'px'
            }
 
            if(settings.scrollbarOnLeft) {
                cssToApply.paddingLeft = settings.scrollbarMargin + settings.scrollbarWidth + 'px';
            } else {
                cssToApply.paddingRight = settings.scrollbarMargin + 'px';
            }
 
            $this.css(cssToApply);
 
            var contentHeight = $this.outerHeight();
            var percentInView = paneHeight / contentHeight;
 
            if (percentInView < .99) {
                var $container = $this.parent();
                $container.append(
                    $('<div></div>').addClass('jScrollCap jScrollCapTop').css({height:settings.topCapHeight}),
                    $('<div></div>').attr({'className':'jScrollPaneTrack'}).css({'width':settings.scrollbarWidth+'px'}).append(
                        $('<div></div>').attr({'className':'jScrollPaneDrag'}).css({'width':settings.scrollbarWidth+'px'}).append(
                            $('<div></div>').attr({'className':'jScrollPaneDragTop'}).css({'width':settings.scrollbarWidth+'px'}),
                            $('<div></div>').attr({'className':'jScrollPaneDragBottom'}).css({'width':settings.scrollbarWidth+'px'})
                        )
                    ),
                    $('<div></div>').addClass('jScrollCap jScrollCapBottom').css({height:settings.bottomCapHeight})
                );
                
                var $track = $('>.jScrollPaneTrack', $container);
                var $drag = $('>.jScrollPaneTrack .jScrollPaneDrag', $container);
                
                
                var currentArrowDirection;
                var currentArrowTimerArr = [];// Array is used to store timers since they can stack up when dealing with keyboard events. This ensures all timers are cleaned up in the end, preventing an acceleration bug.
                var currentArrowInc;
                var whileArrowButtonDown = function() 
                {
                    if (currentArrowInc > 4 || currentArrowInc % 4 == 0) {
                        positionDrag(dragPosition + currentArrowDirection * mouseWheelMultiplier);
                    }
                    currentArrowInc++;
                };
 
                if (settings.enableKeyboardNavigation) {
                    $container.bind(
                        'keydown.jscrollpane',
                        function(e) 
                        {
                            switch (e.keyCode) {
                                case 38: //up
                                    currentArrowDirection = -1;
                                    currentArrowInc = 0;
                                    whileArrowButtonDown();
                                    currentArrowTimerArr[currentArrowTimerArr.length] = setInterval(whileArrowButtonDown, 100);
                                    return false;
                                case 40: //down
                                    currentArrowDirection = 1;
                                    currentArrowInc = 0;
                                    whileArrowButtonDown();
                                    currentArrowTimerArr[currentArrowTimerArr.length] = setInterval(whileArrowButtonDown, 100);
                                    return false;
                                case 33: // page up
                                case 34: // page down
                                    // TODO
                                    return false;
                                default:
                            }
                        }
                    ).bind(
                        'keyup.jscrollpane',
                        function(e) 
                        {
                            if (e.keyCode == 38 || e.keyCode == 40) {
                                for (var i = 0; i < currentArrowTimerArr.length; i++) {
                                    clearInterval(currentArrowTimerArr[i]);
                                }
                                return false;
                            }
                        }
                    );
                }
 
                if (settings.showArrows) {
                    
                    var currentArrowButton;
                    var currentArrowInterval;
 
                    var onArrowMouseUp = function(event)
                    {
                        $('html').unbind('mouseup', onArrowMouseUp);
                        currentArrowButton.removeClass('jScrollActiveArrowButton');
                        clearInterval(currentArrowInterval);
                    };
                    var onArrowMouseDown = function() {
                        $('html').bind('mouseup', onArrowMouseUp);
                        currentArrowButton.addClass('jScrollActiveArrowButton');
                        currentArrowInc = 0;
                        whileArrowButtonDown();
                        currentArrowInterval = setInterval(whileArrowButtonDown, 100);
                    };
                    $container
                        .append(
                            $('<a></a>')
                                .attr(
                                    {
                                        'href':'javascript:;', 
                                        'className':'jScrollArrowUp', 
                                        'tabindex':-1
                                    }
                                )
                                .css(
                                    {
                                        'width':settings.scrollbarWidth+'px',
                                        'top':settings.topCapHeight + 'px'
                                    }
                                )
                                .html('Scroll up')
                                .bind('mousedown', function()
                                {
                                    currentArrowButton = $(this);
                                    currentArrowDirection = -1;
                                    onArrowMouseDown();
                                    this.blur();
                                    return false;
                                })
                                .bind('click', rf),
                            $('<a></a>')
                                .attr(
                                    {
                                        'href':'javascript:;', 
                                        'className':'jScrollArrowDown', 
                                        'tabindex':-1
                                    }
                                )
                                .css(
                                    {
                                        'width':settings.scrollbarWidth+'px',
                                        'bottom':settings.bottomCapHeight + 'px'
                                    }
                                )
                                .html('Scroll down')
                                .bind('mousedown', function()
                                {
                                    currentArrowButton = $(this);
                                    currentArrowDirection = 1;
                                    onArrowMouseDown();
                                    this.blur();
                                    return false;
                                })
                                .bind('click', rf)
                        );
                    var $upArrow = $('>.jScrollArrowUp', $container);
                    var $downArrow = $('>.jScrollArrowDown', $container);
                }
                
                if (settings.arrowSize) {
                    trackHeight = paneHeight - settings.arrowSize - settings.arrowSize;
                    trackOffset += settings.arrowSize;
                } else if ($upArrow) {
                    var topArrowHeight = $upArrow.height();
                    settings.arrowSize = topArrowHeight;
                    trackHeight = paneHeight - topArrowHeight - $downArrow.height();
                    trackOffset += topArrowHeight;
                }
                trackHeight -= settings.topCapHeight + settings.bottomCapHeight;
                $track.css({'height': trackHeight+'px', top:trackOffset+'px'})
                
                var $pane = $(this).css({'position':'absolute', 'overflow':'visible'});
                
                var currentOffset;
                var maxY;
                var mouseWheelMultiplier;
                // store this in a seperate variable so we can keep track more accurately than just updating the css property..
                var dragPosition = 0;
                var dragMiddle = percentInView*paneHeight/2;
                
                // pos function borrowed from tooltip plugin and adapted...
                var getPos = function (event, c) {
                    var p = c == 'X' ? 'Left' : 'Top';
                    return event['page' + c] || (event['client' + c] + (document.documentElement['scroll' + p] || document.body['scroll' + p])) || 0;
                };
                
                var ignoreNativeDrag = function() { return false; };
                
                var initDrag = function()
                {
                    ceaseAnimation();
                    currentOffset = $drag.offset(false);
                    currentOffset.top -= dragPosition;
                    maxY = trackHeight - $drag[0].offsetHeight;
                    mouseWheelMultiplier = 2 * settings.wheelSpeed * maxY / contentHeight;
                };
                
                var onStartDrag = function(event)
                {
                    initDrag();
                    dragMiddle = getPos(event, 'Y') - dragPosition - currentOffset.top;
                    $('html').bind('mouseup', onStopDrag).bind('mousemove', updateScroll);
                    if ($.browser.msie) {
                        $('html').bind('dragstart', ignoreNativeDrag).bind('selectstart', ignoreNativeDrag);
                    }
                    return false;
                };
                var onStopDrag = function()
                {
                    $('html').unbind('mouseup', onStopDrag).unbind('mousemove', updateScroll);
                    dragMiddle = percentInView*paneHeight/2;
                    if ($.browser.msie) {
                        $('html').unbind('dragstart', ignoreNativeDrag).unbind('selectstart', ignoreNativeDrag);
                    }
                };
                var positionDrag = function(destY)
                {
                    $container.scrollTop(0);
                    destY = destY < 0 ? 0 : (destY > maxY ? maxY : destY);
                    dragPosition = destY;
                    $drag.css({'top':destY+'px'});
                    var p = destY / maxY;
                    $this.data('jScrollPanePosition', (paneHeight-contentHeight)*-p);
                    $pane.css({'top':((paneHeight-contentHeight)*p) + 'px'});
                    $this.trigger('scroll');
                    if (settings.showArrows) {
                        $upArrow[destY == 0 ? 'addClass' : 'removeClass']('disabled');
                        $downArrow[destY == maxY ? 'addClass' : 'removeClass']('disabled');
                    }
                };
                var updateScroll = function(e)
                {
                    positionDrag(getPos(e, 'Y') - currentOffset.top - dragMiddle);
                };
                
                var dragH = Math.max(Math.min(percentInView*(paneHeight-settings.arrowSize*2), settings.dragMaxHeight), settings.dragMinHeight);
                
                $drag.css(
                    {'height':dragH+'px'}
                ).bind('mousedown', onStartDrag);
                
                var trackScrollInterval;
                var trackScrollInc;
                var trackScrollMousePos;
                var doTrackScroll = function()
                {
                    if (trackScrollInc > 8 || trackScrollInc%4==0) {
                        positionDrag((dragPosition - ((dragPosition - trackScrollMousePos) / 2)));
                    }
                    trackScrollInc ++;
                };
                var onStopTrackClick = function()
                {
                    clearInterval(trackScrollInterval);
                    $('html').unbind('mouseup', onStopTrackClick).unbind('mousemove', onTrackMouseMove);
                };
                var onTrackMouseMove = function(event)
                {
                    trackScrollMousePos = getPos(event, 'Y') - currentOffset.top - dragMiddle;
                };
                var onTrackClick = function(event)
                {
                    initDrag();
                    onTrackMouseMove(event);
                    trackScrollInc = 0;
                    $('html').bind('mouseup', onStopTrackClick).bind('mousemove', onTrackMouseMove);
                    trackScrollInterval = setInterval(doTrackScroll, 100);
                    doTrackScroll();
                    return false;
                };
                
                $track.bind('mousedown', onTrackClick);
                
                $container.bind(
                    'mousewheel',
                    function (event, delta) {
                        delta = delta || (event.wheelDelta ? event.wheelDelta / 120 : (event.detail) ?
-event.detail/3 : 0);
                        initDrag();
                        ceaseAnimation();
                        var d = dragPosition;
                        positionDrag(dragPosition - delta * mouseWheelMultiplier);
                        var dragOccured = d != dragPosition;
                        return !dragOccured;
                    }
                );
 
                var _animateToPosition;
                var _animateToInterval;
                function animateToPosition()
                {
                    var diff = (_animateToPosition - dragPosition) / settings.animateStep;
                    if (diff > 1 || diff < -1) {
                        positionDrag(dragPosition + diff);
                    } else {
                        positionDrag(_animateToPosition);
                        ceaseAnimation();
                    }
                }
                var ceaseAnimation = function()
                {
                    if (_animateToInterval) {
                        clearInterval(_animateToInterval);
                        delete _animateToPosition;
                    }
                };
                var scrollTo = function(pos, preventAni)
                {
                    if (typeof pos == "string") {
                        $e = $(pos, $this);
                        if (!$e.length) return;
                        pos = $e.offset().top - $this.offset().top;
                    }
                    ceaseAnimation();
                    var maxScroll = contentHeight - paneHeight;
                    pos = pos > maxScroll ? maxScroll : pos;
                    $this.data('jScrollPaneMaxScroll', maxScroll);
                    var destDragPosition = pos/maxScroll * maxY;
                    if (preventAni || !settings.animateTo) {
                        positionDrag(destDragPosition);
                    } else {
                        $container.scrollTop(0);
                        _animateToPosition = destDragPosition;
                        _animateToInterval = setInterval(animateToPosition, settings.animateInterval);
                    }
                };
                $this[0].scrollTo = scrollTo;
                
                $this[0].scrollBy = function(delta)
                {
                    var currentPos = -parseInt($pane.css('top')) || 0;
                    scrollTo(currentPos + delta);
                };
                
                initDrag();
                
                scrollTo(-currentScrollPosition, true);
            
                // Deal with it when the user tabs to a link or form element within this scrollpane
                $('*', this).bind(
                    'focus',
                    function(event)
                    {
                        var $e = $(this);
                        
                        // loop through parents adding the offset top of any elements that are relatively positioned between
                        // the focused element and the jScrollPaneContainer so we can get the true distance from the top
                        // of the focused element to the top of the scrollpane...
                        var eleTop = 0;
                        
                        while ($e[0] != $this[0]) {
                            eleTop += $e.position().top;
                            $e = $e.offsetParent();
                        }
                        
                        var viewportTop = -parseInt($pane.css('top')) || 0;
                        var maxVisibleEleTop = viewportTop + paneHeight;
                        var eleInView = eleTop > viewportTop && eleTop < maxVisibleEleTop;
                        if (!eleInView) {
                            var destPos = eleTop - settings.scrollbarMargin;
                            if (eleTop > viewportTop) { // element is below viewport - scroll so it is at bottom.
                                destPos += $(this).height() + 15 + settings.scrollbarMargin - paneHeight;
                            }
                            scrollTo(destPos);
                        }
                    }
                )
                
                
                if (location.hash && location.hash.length > 1) {
                    setTimeout(function() {scrollTo(location.hash);}, $.browser.safari ? 100 : 0);
                }
                
                // use event delegation to listen for all clicks on links and hijack them if they are links to
                // anchors within our content...
                $(document).bind(
                    'click',
                    function(e)
                    {
                        $target = $(e.target);
                        if ($target.is('a')) {
                            var h = $target.attr('href');
                            if (h && h.substr(0, 1) == '#' && h.length > 1) {
                                setTimeout(function() {scrollTo(h, !settings.animateToInternalLinks);}, $.browser.safari ? 100 : 0);
                            }
                        }
                    }
                ); 
                
                // Deal with dragging and selecting text to make the scrollpane scroll...
                function onSelectScrollMouseDown(e)
                {
                   $(document).bind('mousemove.jScrollPaneDragging', onTextSelectionScrollMouseMove);
                   $(document).bind('mouseup.jScrollPaneDragging',   onSelectScrollMouseUp);
                  
                }
                
                var textDragDistanceAway;
                var textSelectionInterval;
                
                function onTextSelectionInterval()
                {
                    direction = textDragDistanceAway < 0 ? -1 : 1;
                    $this[0].scrollBy(textDragDistanceAway / 2);
                }
 
                function clearTextSelectionInterval()
                {
                    if (textSelectionInterval) {
                        clearInterval(textSelectionInterval);
                        textSelectionInterval = undefined;
                    }
                }
                
                function onTextSelectionScrollMouseMove(e)
                {
                    var offset = $this.parent().offset().top;
                    var maxOffset = offset + paneHeight;
                    var mouseOffset = getPos(e, 'Y');
                    textDragDistanceAway = mouseOffset < offset ? mouseOffset - offset : (mouseOffset > maxOffset ? mouseOffset - maxOffset : 0);
                    if (textDragDistanceAway == 0) {
                        clearTextSelectionInterval();
                    } else {
                        if (!textSelectionInterval) {
                            textSelectionInterval  = setInterval(onTextSelectionInterval, 100);
                        }
                    }
                }
 
                function onSelectScrollMouseUp(e)
                {
                   $(document)
                      .unbind('mousemove.jScrollPaneDragging')
                      .unbind('mouseup.jScrollPaneDragging');
                   clearTextSelectionInterval();
                }
 
                $container.bind('mousedown.jScrollPane', onSelectScrollMouseDown);
 
                
                $.jScrollPane.active.push($this[0]);
                
            } else {
                $this.css(
                    {
                        'height':paneHeight+'px',
                        'width':paneWidth-this.originalSidePaddingTotal+'px',
                        'padding':this.originalPadding
                    }
                );
                $this[0].scrollTo = $this[0].scrollBy = function() {};
                // clean up listeners
                $this.parent().unbind('mousewheel').unbind('mousedown.jScrollPane').unbind('keydown.jscrollpane').unbind('keyup.jscrollpane');
            }
            
        }
    )
};
 
$.fn.jScrollPaneRemove = function()
{
    $(this).each(function()
    {
        $this = $(this);
        var $c = $this.parent();
        if ($c.is('.jScrollPaneContainer')) {
            $this.css(
                {
                    'top':'',
                    'height':'',
                    'width':'',
                    'padding':'',
                    'overflow':'',
                    'position':''
                }
            );
            $this.attr('style', $this.data('originalStyleTag'));
            $c.after($this).remove();
        }
    });
}
 
$.fn.jScrollPane.defaults = {
    scrollbarWidth : 10,
    scrollbarMargin : 5,
    wheelSpeed : 18,
    showArrows : false,
    arrowSize : 0,
    animateTo : false,
    dragMinHeight : 1,
    dragMaxHeight : 99999,
    animateInterval : 100,
    animateStep: 3,
    maintainPosition: true,
    scrollbarOnLeft: false,
    reinitialiseOnImageLoad: false,
    tabIndex : 0,
    enableKeyboardNavigation: true,
    animateToInternalLinks: false,
    topCapHeight: 0,
    bottomCapHeight: 0
};
 
// clean up the scrollTo expandos
$(window)
    .bind('unload', function() {
        var els = $.jScrollPane.active; 
        for (var i=0; i<els.length; i++) {
            els[i].scrollTo = els[i].scrollBy = null;
        }
    }
);
 
})(jQuery);
Не приложил только сброс стилей и jquery, так как нет смысла
Вложения
Тип файла: rar Скролл.rar (39.3 Кб, 5 просмотров)
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
31.01.2014, 00:12
Ответы с готовыми решениями:

Дефрагментация не доходит до конца
Когда делаешь дефрагментацию, всегда хочется увидеть идеальную непрерывную синюю полосу, а после...

Прогресбар не доходит до конца
Есть код: private void timer1_Tick(object sender, EventArgs e) { ...

Программа не доходит до конца
Программа не доходит до конца.В чем может быть ошибка? Иногда запрашивает ввод только а и...

Цикл не доходит до конца
Здравствуйте! Не могу разобраться, почему цикл for не доходит до конца. Ниже я привел код, за любой...

10
112 / 112 / 18
Регистрация: 24.09.2013
Сообщений: 509
31.01.2014, 15:13 2
А чем вам стандартная полоса прокуртки не понравилась?
Цитата Сообщение от vanyakilkil Посмотреть сообщение
Там получается он изначально расчитан на определенную высоту блока
Там - это где? и какая высота стояла там где вы это взяли?
0
38 / 38 / 2
Регистрация: 13.06.2012
Сообщений: 650
31.01.2014, 16:04  [ТС] 3
Web_Master, там это тут http://www.xiper.net/collect/j... lpane.html

Добавлено через 9 минут
Web_Master, мне нравится, нужно же уметь делать, стыдно как-то
0
112 / 112 / 18
Регистрация: 24.09.2013
Сообщений: 509
31.01.2014, 19:22 4
Лучший ответ Сообщение было отмечено vanyakilkil как решение

Решение

vanyakilkil, измените код в файле css.css так:
CSS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
body {
    margin: 0;
}
 
.scrollBox {
    border: 0px solid #0000ff;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
}
 
.scroll-pane {
    width: auto !important;
    height: 100%;
    overflow: auto;
    border: 0px solid #ff0000;
}
В html удалите самый последний тег <br>

P.S. К сожалению плагин древний как кости динозавров и на современной JQ не хочет пахать. Советую поискать обновленную версию плагина (если есть) или найти другой.
1
38 / 38 / 2
Регистрация: 13.06.2012
Сообщений: 650
31.01.2014, 19:25  [ТС] 5
Web_Master, а от себя что-то можете посоветовать?
0
112 / 112 / 18
Регистрация: 24.09.2013
Сообщений: 509
31.01.2014, 19:27 6
Цитата Сообщение от vanyakilkil Посмотреть сообщение
а от себя что-то можете посоветовать?
да использовать стандартную полосу прокрутки
0
38 / 38 / 2
Регистрация: 13.06.2012
Сообщений: 650
31.01.2014, 19:29  [ТС] 7
Web_Master, а если на макете нестандартная?
0
112 / 112 / 18
Регистрация: 24.09.2013
Сообщений: 509
31.01.2014, 19:34 8
Лучший ответ Сообщение было отмечено vanyakilkil как решение

Решение

vanyakilkil, как вариант можно с помощью css менять цвета без всяких плагинов и js :
scrollbar-3dlight-color - цвет верхней и левой границы полосы прокрутки, ее бегунка и стрелок.
scrollbar-arrow-color - цвет стрелок на кнопках полосы прокрутки
scrollbar-base-color - цвет бегунка и кнопок-стрелок полосы прокрутки
scrollbar-darkshadow-color - цвет тени отбрасываемой бегунком и кнопками прокрутки (правые и нижние грани)
scrollbar-face-color - цвет бегунка и кнопок прокрутки
scrollbar-hightlight-color - цвет "освещенной" части бегунка и кнопок прокрутки (левые и верхнии грани)
scrollbar-shadow-color - цвет "неосвещенной" части бегунка и полос прокрутки (правые и нижнии грани)
scrollbar-track-color - цвет рабочей области полосы прокрутки
0
38 / 38 / 2
Регистрация: 13.06.2012
Сообщений: 650
31.01.2014, 19:35  [ТС] 9
Web_Master, о, спасибо за совет, не знал. Ну а если нужно изменить и ширину, тут цвета только
0
112 / 112 / 18
Регистрация: 24.09.2013
Сообщений: 509
31.01.2014, 19:54 10
vanyakilkil, ну тогда все таки придется искать плагин для этого дела
0
4 / 4 / 1
Регистрация: 25.06.2015
Сообщений: 37
12.12.2015, 14:16 11
Пришлось решать подобную проблему: заменить в стандартном скроллбаре не только цвета и ширину, но и убрать стрелки. Средствами css - height:0; или display:none; скролл не доходил до конца, зависал.
Решение очень простое.
Заменить код:
Javascript
1
2
3
4
5
6
<script type="text/javascript">
    jQuery(function()
    {
        jQuery('#pane').jScrollPane({scrollbarWidth:18, showArrows:true});
    });
</script>
На
Javascript
1
2
3
4
5
6
<script type="text/javascript">
    jQuery(function()
    {
        jQuery('#pane').jScrollPane({scrollbarWidth:18, showArrows:false});
    });
</script>
0
12.12.2015, 14:16
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
12.12.2015, 14:16
Помогаю со студенческими работами здесь

Программа не доходит до конца файла и зацикливается
она не видит конца файла и зацикливается на 21 или на 30 строчке... Программа должна удалить все...

Звук на ноутбуке. Регулятор звука не доходит до конца
Имеется ноутбук MSI cx620 Вместе с ним имеется и проблема с громкостью звука. Еле слышно звук на...

Функция feof(stream) зацикливается и не доходит о конца файла
Здравствуйте Проблема в том что функция зацикливается,не доходит до конца файла вот код void...

Как упросить код и остановить когда доходит до конца
Привет всем, подскажите как упросить код что бы 537 раз не писать exc(). И как его остановить когда...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
11
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru