Main Page: Difference between revisions

From Turn.js Documentation
Jump to navigation Jump to search
No edit summary
 
(One intermediate revision by the same user not shown)
Line 8: Line 8:
<pre class="xml">
<pre class="xml">
<div id="flipbook">
<div id="flipbook">
<div class="hard"> Turn.js </div>  
  <div class="hard"> Turn.js </div>  
<div class="hard"></div>
  <div class="hard"></div>
<div> Page 1 </div>
  <div> Page 1 </div>
<div> Page 2 </div>
  <div> Page 2 </div>
<div> Page 3 </div>
  <div> Page 3 </div>
<div> Page 4 </div>
  <div> Page 4 </div>
<div class="hard"></div>
  <div class="hard"></div>
<div class="hard"></div>
  <div class="hard"></div>
</div>
</div>
</pre>
</pre>
Line 21: Line 21:
<pre class="javascript">
<pre class="javascript">
$("#flipbook").turn({
$("#flipbook").turn({
width: 400,
  width: 400,
height: 300,
  height: 300,
autoCenter: true
  autoCenter: true
});
});
</pre>
</pre>
Line 83: Line 83:
* [[Method: next|next]]
* [[Method: next|next]]
* [[Method: is|is]]
* [[Method: is|is]]
* [[Method: options|options]]
* [[Method: page|page]]
* [[Method: page|page]]
* [[Method: pages|pages]]
* [[Method: pages|pages]]

Latest revision as of 06:20, 26 November 2012

Turn.js is a library that will make your content look like a real book or magazine with just HTML content. It uses HTML5 and CSS3 to perform the effects, reason why it works nicely on touch devices such as iOS devices (iPad, iPhone, iPod) and Android devices.

Turn.js takes all the advantages of having real HTML content over flash content. Besides the feeling of native content (selectable content, no third-party contextual menus), it's possible to add advertisement codes, HTML5 videos, tooltips, images, maps, forms, keep tracking of every page and combine them with hundreds of clever libraries made for the Web.

Let's take a look at how it works

1. We create the HTML

<div id="flipbook">
  <div class="hard"> Turn.js </div> 
  <div class="hard"></div>
  <div> Page 1 </div>
  <div> Page 2 </div>
  <div> Page 3 </div>
  <div> Page 4 </div>
  <div class="hard"></div>
  <div class="hard"></div>
</div>

2. Then the JavaScript part

$("#flipbook").turn({
  width: 400,
  height: 300,
  autoCenter: true
});

Here's the result on jsFiddle

Turn.js 4th release

Turn.js 4th release has over 10 different performance improvements and more than 20 new features. The improvements were mainly focused on making the effects much more fluent and smoother as well as reducing memory consumption when using the browser's GPU and storing elements in the DOM tree. It also supports old browsers such as IE8 by adding a new file called turn.html4.js, which has the exact same API (methods, properties) but it deals with the effects in a different way on HTML4-based browsers.

Flipbook

Turn is the built-in jQuery plugin that comes with the turn.js development kit, which allows you to create flipbooks. These are the options, properties, methods, events and CSS classes available in turn.js 4.0.9 release.

Options Properties Methods Events CSS Classes


Zoom Viewport

To implement the new zoom function, a new component is available since turn.js 4.0.2 to define the viewport of the pages when zoomed in. There's an article about how to add zoom to turn.js.

Options Properties Methods Events



Scissors

Scissors is literally a scissor that cuts a page in two parts, so that you can have double pages made entirely in HTML5 and split them into two pages.

Read more about Scissor