views:

47

answers:

1

Hello,

How to create imaged scrollbars, for example:

http://www.openstudio.fr/jquery/index.htm

Basically, I want to create my own image slider with JQuery but I don't want to show default scrollbars. Instead, I would like to have imaged scrollbars.

How do they create custom scrollbars?

+1  A: 

Use for example jScrollPane plugin for jQuery.

Rafael
+1: Thanks for sharing that :) I wonder how do they create it....
Sarfraz
Creating basic functionality isn't that difficult. This kind of scripts wrap the element into some container, set overflow hidden and position relative on the wrapper, position the content absolutely, add some additional markup for scroll-bar parts, handle mouse events on them and change positioning of the content. More complex scripts support mouse wheel and keyboard events to do the scrolling, etc.
Rafael