jquery.simplemarquee

0.3.0 • Public • Published

jquery.simplemarquee

A jQuery plugin that aims to provide a scrolling marquee similar to the good old winamp player.
The main goal of this plugin is simplicity, so it has very little options but it works nicely.

Why?

I've tried jQuery.Marquee which provides similar functionality but:

  • It has unnecessary cruft to support older browsers
  • Does not use transform: translate(x,y) when moving text, causing unnecessary reflows
  • Has some bugs, the most important one leaks <style> tags because they are not removed on destruction

So I've decided to implement my own since it was an easy task anyway.

Demo

Check out the demo.
This same demo is available in the test/demo.html file.

API

.simplemarquee([options])

Setups the marquee with the given options.
Once initialized, you can't change the options.

Available options:

  • speed: The speed in pixels per second, defaults to 100.
  • direction: The direction, defaults to left (available: left, right, top and bottom)
  • cycles: Number of cycles before pausing, defaults to 1 (pass Infinity to cycle continously)
  • space: The space in px between the duplicated contents, defaults to 40
  • delayBetweenCycles: The delay between each cycle in ms, defaults to 2000
  • handleHover: Pause/restart on hover, defaults to true
  • handleResize: Update marquee on resize, defaults to true
  • easing: The timing function used for the CSS animation, defaults to linear
$('.some-el').simplemarquee();

If scrolling is not necessary, the plugin will add has-enough-space class to the element.

.simplemarquee('update', [restart])

Updates the marquee, including calculations made.
If restart is true, the cycles will be restarted.

$('.some-el').simplemarquee('update');

.simplemarquee('pause')

Pauses the marquee.
Emits a pause event.

$('.some-el').simplemarquee('pause');

.simplemarquee('resume')

Resumes the marquee.
Emits a resume event.

$('.some-el').simplemarquee('pause');

.simplemarquee('toggle')

Toggle between the pause/resume methods.

$('.some-el').simplemarquee('toggle');

.simplemarquee('destroy')

Destroy marquee, releasing all events and leaving the element just like it was before.

$('.some-el').simplemarquee('destroy');

Events

  • cycle - Fired before each cycle
  • finish - Fired when all cycles are done
  • pause - Fired when paused
  • resume - Fired when resumed

How to use

Simply include the jquery.simplemarquee.js file after jQuery is loaded.
This plugin also integrates with AMD (no shim required) and CommonJS.

This plugin makes use of CSS transforms, so it's usage is limited to IE >= 10.

Tests

No tests yet :(

Package Sidebar

Install

npm i jquery.simplemarquee

Weekly Downloads

9

Version

0.3.0

License

MIT

Unpacked Size

23.9 kB

Total Files

8

Last publish

Collaborators

  • paulgoetze