Make a Flip Book

August 2, 2017

Get More Solutions? Please visit our blog site
We can make a flip book  by Turn.js. Turn.js is a JavaScript library that will make your content look like a real book or magazine using all the advantages of HTML5.

The web is getting beautiful with new user interfaces based in HTML5; turn.js is the best fit for a magazine, book or catalog based in HTML5.

See more please visite Turn.js website. Or you can create Flip book by the WordPress plugin Flowpaper.

Features

  • Works on iPad and iPhone.
  • Simple, beautiful and powerful API.
  • Allows to load pages dynamically through Ajax requests.
  • Pure HTML5/CSS3 content.
  • Two transition effects.
  • Works in old browsers such as IE 8 with turn.html4.js

Let’s code

<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>
<script type="text/javascript">
	$("#flipbook").turn({
		width: 400,
		height: 300,
		autoCenter: true
	});
</script>

​Leave a Comment