jQuery Horizontal automatic Scrollbars with mouse
We all know that horizontal scrollbars are hideous. So, wouldn’t it be nice if we had a simple way to represent horizontal overflow? Well, thanks to a few javascript functions and some dinking around, I created a jQuery plug-in that will show a nice horizontal scrollbar to the user.
The jQuery horizontal scrollbar is very easy to implement. Feel free to check out the demo and download the source code. Additionally, checkout below on how to use the plug-in.
How To Use:
-
Add the necessary JS and CSS files
<link rel="stylesheet" type="text/css" href="jquery.horizontal.scroll.css" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script> <script src="jquery.horizontal.scroll.js" type="text/javascript"></script>
-
In the jQuery loop call the horizontalScroll function from the outer div object
<script type="text/javascript"> $(document).ready(function(){ $('#horiz_container_outer').horizontalScroll(); }); </script>
-
Finally add the necessary HTML
<ul id="horiz_container_outer"> <li id="horiz_container_inner"> <ul id="horiz_container"> <li>Image 1</li> <li>Image 2</li> <li>Image 3</li> <li>Image 4</li> <li>Image 5</li> </ul> </li> </ul> <div id="scrollbar"> <a id="left_scroll" class="mouseover_left" href="#"></a> <div id="track"> <div id="dragBar"></div> </div> <a id="right_scroll" class="mouseover_right" href="#"></a></div> </div>
Tips:
- Make sure that you give an ‘ID’ name for each of the three ‘container outer’, ‘container inner’, and the ‘container’.
- The outer container will be the viewing space, if you only want the user to view 800px then set this width to 800px. You will have to set the #scrollbar and #track to the same width. The container will have to be the full width of the long list you wish to scroll.
You might also like
Tags
accordion accordion menu animation navigation animation navigation menu carousel checkbox inputs css3 css3 menu css3 navigation date picker dialog drag drop drop down menu drop down navigation menu elastic navigation form form validation gallery glide navigation horizontal navigation menu hover effect image gallery image hover image lightbox image scroller image slideshow multi-level navigation menus rating select dependent select list slide image slider menu stylish form table tabs text effect text scroller tooltips tree menu vertical navigation menu