0

I want page curl effect both for iOS and Android phone. I'm working on Mobione design center, which has a base of cordova/phonegap.

Please advise, how to use turn.js for phonegap?

http://www.turnjs.com/

Any help would be appreciated.

pratiti-systematix
  • 792
  • 11
  • 28

1 Answers1

1

Did you read the Docs?

Turn JS Documentation

<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>

JS:

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

there is also a working jsfiddle ->

JSfiddle Turn.JS

Sithys
  • 3,655
  • 8
  • 32
  • 67