Option: direction

From Turn.js Documentation
Revision as of 06:26, 26 November 2012 by Emmanuel (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Specifies the directionality of the flipbook left-to-right (DIR=ltr, the default) or right-to-left (DIR=rtl).

Type Default value
String ltr

Examples

1. Specifying the direction as an option

$("#flipbook").turn({direction: "rtl"});

2. Using the HTML dir attribute.

<div id="flipbook" dir="rtl">
  <!--Pages-->
</div>

3. Using the CSS direction rule

#flipbook {
  direction:rtl;
}

See also

<yambe:breadcrumb>Turn Options</yambe:breadcrumb>