2 * jQuery UI Slider 1.8.10
4 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 * Dual licensed under the MIT or GPL Version 2 licenses.
6 * http://jquery.org/license
8 * http://docs.jquery.com/UI/Slider
15 (function( $, undefined ) {
17 // number of pages in a slider
18 // (how many times can you page up/down to go through the whole range)
21 $.widget( "ui.slider", $.ui.mouse, {
23 widgetEventPrefix: "slide",
30 orientation: "horizontal",
41 this._keySliding = false;
42 this._mouseSliding = false;
43 this._animateOff = true;
44 this._handleIndex = null;
45 this._detectOrientation();
49 .addClass( "ui-slider" +
50 " ui-slider-" + this.orientation +
52 " ui-widget-content" +
56 this.element.addClass( "ui-slider-disabled ui-disabled" );
62 if ( o.range === true ) {
63 this.range = $( "<div></div>" );
65 o.values = [ this._valueMin(), this._valueMin() ];
67 if ( o.values.length && o.values.length !== 2 ) {
68 o.values = [ o.values[0], o.values[0] ];
71 this.range = $( "<div></div>" );
75 .appendTo( this.element )
76 .addClass( "ui-slider-range" );
78 if ( o.range === "min" || o.range === "max" ) {
79 this.range.addClass( "ui-slider-range-" + o.range );
82 // note: this isn't the most fittingly semantic framework class for this element,
83 // but worked best visually with a variety of themes
84 this.range.addClass( "ui-widget-header" );
87 if ( $( ".ui-slider-handle", this.element ).length === 0 ) {
88 $( "<a href='#'></a>" )
89 .appendTo( this.element )
90 .addClass( "ui-slider-handle" );
93 if ( o.values && o.values.length ) {
94 while ( $(".ui-slider-handle", this.element).length < o.values.length ) {
95 $( "<a href='#'></a>" )
96 .appendTo( this.element )
97 .addClass( "ui-slider-handle" );
101 this.handles = $( ".ui-slider-handle", this.element )
102 .addClass( "ui-state-default" +
105 this.handle = this.handles.eq( 0 );
107 this.handles.add( this.range ).filter( "a" )
108 .click(function( event ) {
109 event.preventDefault();
113 $( this ).addClass( "ui-state-hover" );
116 $( this ).removeClass( "ui-state-hover" );
120 $( ".ui-slider .ui-state-focus" ).removeClass( "ui-state-focus" );
121 $( this ).addClass( "ui-state-focus" );
127 $( this ).removeClass( "ui-state-focus" );
130 this.handles.each(function( i ) {
131 $( this ).data( "index.ui-slider-handle", i );
135 .keydown(function( event ) {
137 index = $( this ).data( "index.ui-slider-handle" ),
143 if ( self.options.disabled ) {
147 switch ( event.keyCode ) {
148 case $.ui.keyCode.HOME:
149 case $.ui.keyCode.END:
150 case $.ui.keyCode.PAGE_UP:
151 case $.ui.keyCode.PAGE_DOWN:
152 case $.ui.keyCode.UP:
153 case $.ui.keyCode.RIGHT:
154 case $.ui.keyCode.DOWN:
155 case $.ui.keyCode.LEFT:
157 if ( !self._keySliding ) {
158 self._keySliding = true;
159 $( this ).addClass( "ui-state-active" );
160 allowed = self._start( event, index );
161 if ( allowed === false ) {
168 step = self.options.step;
169 if ( self.options.values && self.options.values.length ) {
170 curVal = newVal = self.values( index );
172 curVal = newVal = self.value();
175 switch ( event.keyCode ) {
176 case $.ui.keyCode.HOME:
177 newVal = self._valueMin();
179 case $.ui.keyCode.END:
180 newVal = self._valueMax();
182 case $.ui.keyCode.PAGE_UP:
183 newVal = self._trimAlignValue( curVal + ( (self._valueMax() - self._valueMin()) / numPages ) );
185 case $.ui.keyCode.PAGE_DOWN:
186 newVal = self._trimAlignValue( curVal - ( (self._valueMax() - self._valueMin()) / numPages ) );
188 case $.ui.keyCode.UP:
189 case $.ui.keyCode.RIGHT:
190 if ( curVal === self._valueMax() ) {
193 newVal = self._trimAlignValue( curVal + step );
195 case $.ui.keyCode.DOWN:
196 case $.ui.keyCode.LEFT:
197 if ( curVal === self._valueMin() ) {
200 newVal = self._trimAlignValue( curVal - step );
204 self._slide( event, index, newVal );
209 .keyup(function( event ) {
210 var index = $( this ).data( "index.ui-slider-handle" );
212 if ( self._keySliding ) {
213 self._keySliding = false;
214 self._stop( event, index );
215 self._change( event, index );
216 $( this ).removeClass( "ui-state-active" );
221 this._refreshValue();
223 this._animateOff = false;
226 destroy: function() {
227 this.handles.remove();
231 .removeClass( "ui-slider" +
232 " ui-slider-horizontal" +
233 " ui-slider-vertical" +
234 " ui-slider-disabled" +
236 " ui-widget-content" +
238 .removeData( "slider" )
239 .unbind( ".slider" );
241 this._mouseDestroy();
246 _mouseCapture: function( event ) {
247 var o = this.options,
263 width: this.element.outerWidth(),
264 height: this.element.outerHeight()
266 this.elementOffset = this.element.offset();
268 position = { x: event.pageX, y: event.pageY };
269 normValue = this._normValueFromMouse( position );
270 distance = this._valueMax() - this._valueMin() + 1;
272 this.handles.each(function( i ) {
273 var thisDistance = Math.abs( normValue - self.values(i) );
274 if ( distance > thisDistance ) {
275 distance = thisDistance;
276 closestHandle = $( this );
281 // workaround for bug #3736 (if both handles of a range are at 0,
282 // the first is always used as the one with least distance,
283 // and moving it is obviously prevented by preventing negative ranges)
284 if( o.range === true && this.values(1) === o.min ) {
286 closestHandle = $( this.handles[index] );
289 allowed = this._start( event, index );
290 if ( allowed === false ) {
293 this._mouseSliding = true;
295 self._handleIndex = index;
298 .addClass( "ui-state-active" )
301 offset = closestHandle.offset();
302 mouseOverHandle = !$( event.target ).parents().andSelf().is( ".ui-slider-handle" );
303 this._clickOffset = mouseOverHandle ? { left: 0, top: 0 } : {
304 left: event.pageX - offset.left - ( closestHandle.width() / 2 ),
305 top: event.pageY - offset.top -
306 ( closestHandle.height() / 2 ) -
307 ( parseInt( closestHandle.css("borderTopWidth"), 10 ) || 0 ) -
308 ( parseInt( closestHandle.css("borderBottomWidth"), 10 ) || 0) +
309 ( parseInt( closestHandle.css("marginTop"), 10 ) || 0)
312 if ( !this.handles.hasClass( "ui-state-hover" ) ) {
313 this._slide( event, index, normValue );
315 this._animateOff = true;
319 _mouseStart: function( event ) {
323 _mouseDrag: function( event ) {
324 var position = { x: event.pageX, y: event.pageY },
325 normValue = this._normValueFromMouse( position );
327 this._slide( event, this._handleIndex, normValue );
332 _mouseStop: function( event ) {
333 this.handles.removeClass( "ui-state-active" );
334 this._mouseSliding = false;
336 this._stop( event, this._handleIndex );
337 this._change( event, this._handleIndex );
339 this._handleIndex = null;
340 this._clickOffset = null;
341 this._animateOff = false;
346 _detectOrientation: function() {
347 this.orientation = ( this.options.orientation === "vertical" ) ? "vertical" : "horizontal";
350 _normValueFromMouse: function( position ) {
357 if ( this.orientation === "horizontal" ) {
358 pixelTotal = this.elementSize.width;
359 pixelMouse = position.x - this.elementOffset.left - ( this._clickOffset ? this._clickOffset.left : 0 );
361 pixelTotal = this.elementSize.height;
362 pixelMouse = position.y - this.elementOffset.top - ( this._clickOffset ? this._clickOffset.top : 0 );
365 percentMouse = ( pixelMouse / pixelTotal );
366 if ( percentMouse > 1 ) {
369 if ( percentMouse < 0 ) {
372 if ( this.orientation === "vertical" ) {
373 percentMouse = 1 - percentMouse;
376 valueTotal = this._valueMax() - this._valueMin();
377 valueMouse = this._valueMin() + percentMouse * valueTotal;
379 return this._trimAlignValue( valueMouse );
382 _start: function( event, index ) {
384 handle: this.handles[ index ],
387 if ( this.options.values && this.options.values.length ) {
388 uiHash.value = this.values( index );
389 uiHash.values = this.values();
391 return this._trigger( "start", event, uiHash );
394 _slide: function( event, index, newVal ) {
399 if ( this.options.values && this.options.values.length ) {
400 otherVal = this.values( index ? 0 : 1 );
402 if ( ( this.options.values.length === 2 && this.options.range === true ) &&
403 ( ( index === 0 && newVal > otherVal) || ( index === 1 && newVal < otherVal ) )
408 if ( newVal !== this.values( index ) ) {
409 newValues = this.values();
410 newValues[ index ] = newVal;
411 // A slide can be canceled by returning false from the slide callback
412 allowed = this._trigger( "slide", event, {
413 handle: this.handles[ index ],
417 otherVal = this.values( index ? 0 : 1 );
418 if ( allowed !== false ) {
419 this.values( index, newVal, true );
423 if ( newVal !== this.value() ) {
424 // A slide can be canceled by returning false from the slide callback
425 allowed = this._trigger( "slide", event, {
426 handle: this.handles[ index ],
429 if ( allowed !== false ) {
430 this.value( newVal );
436 _stop: function( event, index ) {
438 handle: this.handles[ index ],
441 if ( this.options.values && this.options.values.length ) {
442 uiHash.value = this.values( index );
443 uiHash.values = this.values();
446 this._trigger( "stop", event, uiHash );
449 _change: function( event, index ) {
450 if ( !this._keySliding && !this._mouseSliding ) {
452 handle: this.handles[ index ],
455 if ( this.options.values && this.options.values.length ) {
456 uiHash.value = this.values( index );
457 uiHash.values = this.values();
460 this._trigger( "change", event, uiHash );
464 value: function( newValue ) {
465 if ( arguments.length ) {
466 this.options.value = this._trimAlignValue( newValue );
467 this._refreshValue();
468 this._change( null, 0 );
471 return this._value();
474 values: function( index, newValue ) {
479 if ( arguments.length > 1 ) {
480 this.options.values[ index ] = this._trimAlignValue( newValue );
481 this._refreshValue();
482 this._change( null, index );
485 if ( arguments.length ) {
486 if ( $.isArray( arguments[ 0 ] ) ) {
487 vals = this.options.values;
488 newValues = arguments[ 0 ];
489 for ( i = 0; i < vals.length; i += 1 ) {
490 vals[ i ] = this._trimAlignValue( newValues[ i ] );
491 this._change( null, i );
493 this._refreshValue();
495 if ( this.options.values && this.options.values.length ) {
496 return this._values( index );
502 return this._values();
506 _setOption: function( key, value ) {
510 if ( $.isArray( this.options.values ) ) {
511 valsLength = this.options.values.length;
514 $.Widget.prototype._setOption.apply( this, arguments );
519 this.handles.filter( ".ui-state-focus" ).blur();
520 this.handles.removeClass( "ui-state-hover" );
521 this.handles.attr( "disabled", "disabled" );
522 this.element.addClass( "ui-disabled" );
524 this.handles.removeAttr( "disabled" );
525 this.element.removeClass( "ui-disabled" );
529 this._detectOrientation();
531 .removeClass( "ui-slider-horizontal ui-slider-vertical" )
532 .addClass( "ui-slider-" + this.orientation );
533 this._refreshValue();
536 this._animateOff = true;
537 this._refreshValue();
538 this._change( null, 0 );
539 this._animateOff = false;
542 this._animateOff = true;
543 this._refreshValue();
544 for ( i = 0; i < valsLength; i += 1 ) {
545 this._change( null, i );
547 this._animateOff = false;
552 //internal value getter
553 // _value() returns value trimmed by min and max, aligned by step
555 var val = this.options.value;
556 val = this._trimAlignValue( val );
561 //internal values getter
562 // _values() returns array of values trimmed by min and max, aligned by step
563 // _values( index ) returns single value trimmed by min and max, aligned by step
564 _values: function( index ) {
569 if ( arguments.length ) {
570 val = this.options.values[ index ];
571 val = this._trimAlignValue( val );
575 // .slice() creates a copy of the array
576 // this copy gets trimmed by min and max and then returned
577 vals = this.options.values.slice();
578 for ( i = 0; i < vals.length; i+= 1) {
579 vals[ i ] = this._trimAlignValue( vals[ i ] );
586 // returns the step-aligned value that val is closest to, between (inclusive) min and max
587 _trimAlignValue: function( val ) {
588 if ( val <= this._valueMin() ) {
589 return this._valueMin();
591 if ( val >= this._valueMax() ) {
592 return this._valueMax();
594 var step = ( this.options.step > 0 ) ? this.options.step : 1,
595 valModStep = (val - this._valueMin()) % step;
596 alignValue = val - valModStep;
598 if ( Math.abs(valModStep) * 2 >= step ) {
599 alignValue += ( valModStep > 0 ) ? step : ( -step );
602 // Since JavaScript has problems with large floats, round
603 // the final value to 5 digits after the decimal point (see #4124)
604 return parseFloat( alignValue.toFixed(5) );
607 _valueMin: function() {
608 return this.options.min;
611 _valueMax: function() {
612 return this.options.max;
615 _refreshValue: function() {
616 var oRange = this.options.range,
619 animate = ( !this._animateOff ) ? o.animate : false,
627 if ( this.options.values && this.options.values.length ) {
628 this.handles.each(function( i, j ) {
629 valPercent = ( self.values(i) - self._valueMin() ) / ( self._valueMax() - self._valueMin() ) * 100;
630 _set[ self.orientation === "horizontal" ? "left" : "bottom" ] = valPercent + "%";
631 $( this ).stop( 1, 1 )[ animate ? "animate" : "css" ]( _set, o.animate );
632 if ( self.options.range === true ) {
633 if ( self.orientation === "horizontal" ) {
635 self.range.stop( 1, 1 )[ animate ? "animate" : "css" ]( { left: valPercent + "%" }, o.animate );
638 self.range[ animate ? "animate" : "css" ]( { width: ( valPercent - lastValPercent ) + "%" }, { queue: false, duration: o.animate } );
642 self.range.stop( 1, 1 )[ animate ? "animate" : "css" ]( { bottom: ( valPercent ) + "%" }, o.animate );
645 self.range[ animate ? "animate" : "css" ]( { height: ( valPercent - lastValPercent ) + "%" }, { queue: false, duration: o.animate } );
649 lastValPercent = valPercent;
652 value = this.value();
653 valueMin = this._valueMin();
654 valueMax = this._valueMax();
655 valPercent = ( valueMax !== valueMin ) ?
656 ( value - valueMin ) / ( valueMax - valueMin ) * 100 :
658 _set[ self.orientation === "horizontal" ? "left" : "bottom" ] = valPercent + "%";
659 this.handle.stop( 1, 1 )[ animate ? "animate" : "css" ]( _set, o.animate );
661 if ( oRange === "min" && this.orientation === "horizontal" ) {
662 this.range.stop( 1, 1 )[ animate ? "animate" : "css" ]( { width: valPercent + "%" }, o.animate );
664 if ( oRange === "max" && this.orientation === "horizontal" ) {
665 this.range[ animate ? "animate" : "css" ]( { width: ( 100 - valPercent ) + "%" }, { queue: false, duration: o.animate } );
667 if ( oRange === "min" && this.orientation === "vertical" ) {
668 this.range.stop( 1, 1 )[ animate ? "animate" : "css" ]( { height: valPercent + "%" }, o.animate );
670 if ( oRange === "max" && this.orientation === "vertical" ) {
671 this.range[ animate ? "animate" : "css" ]( { height: ( 100 - valPercent ) + "%" }, { queue: false, duration: o.animate } );
678 $.extend( $.ui.slider, {