Skip to content
Petr Vostřel edited this page Mar 15, 2012 · 11 revisions

Reel Options

When calling .reel() method you have plenty of options (far too many) available. You collect them into one hash and supply them with your call.

Example: For a non-looping Reel with 12 frames:

.reel({
  frames: 12,
  looping: false
})

All options are optional and if not specified, a default value is used instead. Defaults are being housed as members of $.reel.def hash. If you customize any default value therein, all subsequent .reel() calls will use the new value as default.

F.e.: Change default initial frame to 5th:

$.reel.def.frame = 5

By Category

Index

Those highlighted in bold are new options in 1.2, those in italics are deprecated. Learn more about current Deprecations.

Clone this wiki locally