Quantcast
Channel: Pixel Acres » jQuery
Viewing all articles
Browse latest Browse all 2

Trackpad Scroll Emulator jQuery plugin

$
0
0

When Rdio rolled out their redesigned application recently, I was intrigued by the app’s scrolling implementation. There are no conventional browser scrollbars in Rdio, and instead scrollbars appear on-demand when the user’s mouse enters a scrollable portion of the interface, or when the user performs a mousewheel or trackpad scroll. Rdio’s implementation mimics the experience of scrolling in OSX Lion using a trackpad pointing device, except that it works for any user, on any platform.

Inspired by Rdio’s scrollbars I have created a jQuery plugin that emulates Lion’s trackpad-style scrolling, regardless of the user’s pointing device, browser, or platform.

Demo and download

View a demo, download the plugin, or fork this project on github.

What it does

Traditionally scrollbars are permanently displayed whenever an area of a webpage is scrollable. By contrast, scrollbars in OSX Lion are hidden from sight, and revealed only when the user executes a swipe gesture with a ‘magic’ trackpad pointing device.

My plugin emulates Lion’s UI pattern by replacing the browser’s default scrollbars with a custom CSS-styled scrollbar that is only revealed when the user hovers over a scrollable element.

Modern browsers get a very accurate emulation of Lion’s scrollbars, while less capable browsers miss out on a few bells and whistles such as rounded corners, opacity, and animated fades.

Usage

Include Trackpad Scroll Emulator and jQuery in your document. The paths and filenames may differ from those shown here:

<link rel="stylesheet" href="css/trackpad-scroll-emulator.css" />
<script src="js/jquery-1.7.1.min.js"></script>
<script src="js/jquery.trackpad-scroll-emulator-1.0.min.js"></script>

Mark up the content you wish to scroll like so:

<div class="tse-scrollable wrapper">
  <div class="tse-content">
    My content
  </div>
</div>

For horizontal scrolling add the class horizontal to the tse-content element:

<div class="tse-scrollable wrapper">
  <div class="tse-content horizontal">
    My content
  </div>
</div>

In the above examples the wrapper class is not required, but gives us a unique hook to use as a jQuery selector when initializing the plugin:

$('wrapper').TrackpadScrollEmulator();

Notifying the plugin of content changes

If you later dynamically modify your content, for instance changing its height or width, or adding or removing content, you should recalculate the scrollbars like so:

$('wrapper').TrackpadScrollEmulator('recalculate');

Destroying the plugin

To remove the plugin from your element, call its `destroy` method:

$('wrapper').TrackpadScrollEmulator('destroy');

Overwriting the content dimensions

The dimensions of the tse-scrollable wrapping element determine the visible dimensions of your content. Chances are that you’ll want to change the width or height of the wrapping element, which can be done using CSS or JavaScript:

.wrapper {
  width: 250px; /* Example of overwiting default width */
}

The demo bundled with Trackpad Scroll Emulator demonstrates how you might dynamically alter the dimensions of tse-scrollable using JavaScript.

Non-JS fallback

Trackpad Scroll Emulator hides the browser’s default scrollbars, which obviously is undesirable if the user has JavaScript disabled. To restore the browser’s scrollbars you can optionally include the following noscript element in your document’s head:

<noscript>
  <style>
    .tse-scrollable {
      overflow-y: scroll;
    }
    .tse-scrollable.horizontal {
      overflow-x: scroll;
      overflow-y: hidden;
    }
  </style>
</noscript>

If you’re wondering why I didn’t just apply these default styles in Trackpad Scroll Emulator’s CSS stylesheet, the reason is that Internet Explorer would display the browser scrollbars for a moment or two before the plugin kicked in, which is really ugly. I think that using a noscript tag is an acceptable compromise.

How it works

For the most part Trackpad Scroll Emulator uses the browser’s native scrolling functionality, but replaces the conventional scrollbar with a custom CSS-styled scrollbar. The plugin listens for scroll events and redraws the custom scrollbar accordingly.

Key to this technique is hiding the native browser scrollbar. In modern browsers (i.e. WebKit) this is achieved simply by giving the scrollbar a width/height of zero using the ::webkit-scrollbar and ::scrollbar pseudo selectors. In other browsers the scrollable element is made slightly wider/taller than its containing element, effectively hiding the scrollbar from view.

Limitations

Trackpad Scroll Emulator can currently handle vertical or horizontal scrollbars, but not both simultaneously.

Credits

Most of the credit for this technique goes to Rdio’s developers. Rdio is a Backbone application, so their solution is a combination of Backbone, Underscore, jQuery, CSS and Bujagali (their own templating system). What I have done is to recreate the same scrolling functionality using only jQuery and CSS.

Credit is also due to Jonathan Sharp, who wrote the original function for measuring the width of the browser’s scrollbar.


Viewing all articles
Browse latest Browse all 2

Latest Images

Trending Articles





Latest Images