2010-03-12 03:18:34 +00:00
<!DOCTYPE html>
2009-03-03 11:15:16 +00:00
< html lang = "en" >
< head >
2010-10-13 14:39:50 +00:00
< meta charset = "utf-8" >
2009-03-03 11:15:16 +00:00
< title > jQuery UI Slider - Slider scrollbar< / title >
2010-10-13 14:39:50 +00:00
< link rel = "stylesheet" href = "../../themes/base/jquery.ui.all.css" >
2012-08-13 13:19:09 +00:00
< script src = "../../jquery-1.8.0.js" > < / script >
2010-10-13 14:39:50 +00:00
< script src = "../../ui/jquery.ui.core.js" > < / script >
< script src = "../../ui/jquery.ui.widget.js" > < / script >
< script src = "../../ui/jquery.ui.mouse.js" > < / script >
< script src = "../../ui/jquery.ui.slider.js" > < / script >
< link rel = "stylesheet" href = "../demos.css" >
< style >
#demo-frame > div.demo { padding: 10px !important; }
.scroll-pane { overflow: auto; width: 99%; float:left; }
.scroll-content { width: 2440px; float: left; }
.scroll-content-item { width: 100px; height: 100px; float: left; margin: 10px; font-size: 3em; line-height: 96px; text-align: center; }
* html .scroll-content-item { display: inline; } /* IE6 float double margin bug */
.scroll-bar-wrap { clear: left; padding: 0 4px 0 2px; margin: 0 -1px -1px -1px; }
.scroll-bar-wrap .ui-slider { background: none; border:0; height: 2em; margin: 0 auto; }
.scroll-bar-wrap .ui-handle-helper-parent { position: relative; width: 100%; height: 100%; margin: 0 auto; }
.scroll-bar-wrap .ui-slider-handle { top:.2em; height: 1.5em; }
.scroll-bar-wrap .ui-slider-handle .ui-icon { margin: -8px auto 0; position: relative; top: 50%; }
2009-03-03 11:15:16 +00:00
< / style >
2010-10-13 14:39:50 +00:00
< script >
2009-03-03 11:15:16 +00:00
$(function() {
//scrollpane parts
2010-10-13 14:39:50 +00:00
var scrollPane = $( ".scroll-pane" ),
scrollContent = $( ".scroll-content" );
2009-03-03 11:15:16 +00:00
//build slider
2010-10-13 14:39:50 +00:00
var scrollbar = $( ".scroll-bar" ).slider({
slide: function( event, ui ) {
if ( scrollContent.width() > scrollPane.width() ) {
scrollContent.css( "margin-left", Math.round(
ui.value / 100 * ( scrollPane.width() - scrollContent.width() )
) + "px" );
} else {
scrollContent.css( "margin-left", 0 );
}
2009-03-03 11:15:16 +00:00
}
});
//append icon to handle
2010-10-13 14:39:50 +00:00
var handleHelper = scrollbar.find( ".ui-slider-handle" )
.mousedown(function() {
2009-03-03 11:15:16 +00:00
scrollbar.width( handleHelper.width() );
})
2010-10-13 14:39:50 +00:00
.mouseup(function() {
scrollbar.width( "100%" );
2009-03-03 11:15:16 +00:00
})
2010-10-13 14:39:50 +00:00
.append( "< span class = 'ui-icon ui-icon-grip-dotted-vertical' > < / span > " )
.wrap( "< div class = 'ui-handle-helper-parent' > < / div > " ).parent();
2009-03-03 11:15:16 +00:00
//change overflow to hidden now that slider handles the scrolling
2010-10-13 14:39:50 +00:00
scrollPane.css( "overflow", "hidden" );
2009-03-03 11:15:16 +00:00
//size scrollbar and handle proportionally to scroll distance
2010-10-13 14:39:50 +00:00
function sizeScrollbar() {
2009-03-03 11:15:16 +00:00
var remainder = scrollContent.width() - scrollPane.width();
var proportion = remainder / scrollContent.width();
2010-10-13 14:39:50 +00:00
var handleSize = scrollPane.width() - ( proportion * scrollPane.width() );
scrollbar.find( ".ui-slider-handle" ).css({
2009-03-03 11:15:16 +00:00
width: handleSize,
2010-10-13 14:39:50 +00:00
"margin-left": -handleSize / 2
2009-03-03 11:15:16 +00:00
});
2010-10-13 14:39:50 +00:00
handleHelper.width( "" ).width( scrollbar.width() - handleSize );
2009-03-03 11:15:16 +00:00
}
//reset slider value based on scroll content position
2010-10-13 14:39:50 +00:00
function resetValue() {
2009-03-03 11:15:16 +00:00
var remainder = scrollPane.width() - scrollContent.width();
2010-10-13 14:39:50 +00:00
var leftVal = scrollContent.css( "margin-left" ) === "auto" ? 0 :
parseInt( scrollContent.css( "margin-left" ) );
var percentage = Math.round( leftVal / remainder * 100 );
scrollbar.slider( "value", percentage );
2009-03-03 11:15:16 +00:00
}
2010-10-13 14:39:50 +00:00
2009-03-03 11:15:16 +00:00
//if the slider is 100% and window gets larger, reveal content
2010-10-13 14:39:50 +00:00
function reflowContent() {
var showing = scrollContent.width() + parseInt( scrollContent.css( "margin-left" ), 10 );
2009-03-03 11:15:16 +00:00
var gap = scrollPane.width() - showing;
2010-10-13 14:39:50 +00:00
if ( gap > 0 ) {
scrollContent.css( "margin-left", parseInt( scrollContent.css( "margin-left" ), 10 ) + gap );
2009-03-03 11:15:16 +00:00
}
}
//change handle position on window resize
2010-10-13 14:39:50 +00:00
$( window ).resize(function() {
resetValue();
sizeScrollbar();
reflowContent();
2009-03-03 11:15:16 +00:00
});
//init scrollbar size
2010-10-13 14:39:50 +00:00
setTimeout( sizeScrollbar, 10 );//safari wants a timeout
2009-03-03 11:15:16 +00:00
});
< / script >
< / head >
< body >
< div class = "demo" >
< div class = "scroll-pane ui-widget ui-widget-header ui-corner-all" >
< div class = "scroll-content" >
< div class = "scroll-content-item ui-widget-header" > 1< / div >
< div class = "scroll-content-item ui-widget-header" > 2< / div >
< div class = "scroll-content-item ui-widget-header" > 3< / div >
< div class = "scroll-content-item ui-widget-header" > 4< / div >
< div class = "scroll-content-item ui-widget-header" > 5< / div >
< div class = "scroll-content-item ui-widget-header" > 6< / div >
< div class = "scroll-content-item ui-widget-header" > 7< / div >
< div class = "scroll-content-item ui-widget-header" > 8< / div >
< div class = "scroll-content-item ui-widget-header" > 9< / div >
< div class = "scroll-content-item ui-widget-header" > 10< / div >
< div class = "scroll-content-item ui-widget-header" > 11< / div >
< div class = "scroll-content-item ui-widget-header" > 12< / div >
< div class = "scroll-content-item ui-widget-header" > 13< / div >
< div class = "scroll-content-item ui-widget-header" > 14< / div >
< div class = "scroll-content-item ui-widget-header" > 15< / div >
< div class = "scroll-content-item ui-widget-header" > 16< / div >
< div class = "scroll-content-item ui-widget-header" > 17< / div >
< div class = "scroll-content-item ui-widget-header" > 18< / div >
< div class = "scroll-content-item ui-widget-header" > 19< / div >
< div class = "scroll-content-item ui-widget-header" > 20< / div >
< / div >
< div class = "scroll-bar-wrap ui-widget-content ui-corner-bottom" >
< div class = "scroll-bar" > < / div >
< / div >
< / div >
< / div > <!-- End demo -->
< div class = "demo-description" >
< p > Use a slider to manipulate the positioning of content on the page. In this case, it acts as a scrollbar with the potential to capture values if needed.< / p >
< / div > <!-- End demo - description -->
< / body >
< / html >