I need to create a flip book/page application. I have seen flash created flip page, can it be done in any other languages, e.g. jquery or javascript? And also, what are some concepts that I am required to have in mind/knowledge on for creating a flip book?

Thanks.

link|improve this question

1  
jQuery IS JavaScript! – Adam Harte Nov 12 '09 at 9:07
feedback

3 Answers

up vote 3 down vote accepted

Not quite sure what you mean by "flip book", can you elaborate on this?

If you mean just a digital book, that you can turn the pages of, then I would surgest looking into this AS3 page-flip engine. And here is a list of good (mostly commercial) examples

EDIT* - Not to sure why you would want to create this from scratch, as there are a ton of well made Page-flip libraries out there that are really nicely build, and are either free, or really cheep. Most of the time they are customizable too.

That said, I think they are probably all using a combination of the following:

  • Preloaded pages - movieclip with either an image or other graphics preloaded into it
  • Gradients - to give the illusion of a 3d page that is "turning"
  • Trigonometry - for dragging effect. To angle the page towards mouse
  • Masks - to get the page folding effect, when the user start to drag the page, the next page is loaded over the top. Both these page have been masked off based on the users mouse position.

Also the Page-flip engine I linked to above (MegaZine), is open-source. So if you where really keen, then you could dive into there source code and take a look for yourself.

Hope that helps somewhat.

link|improve this answer
1  
Yup, digital book is what i am looking for. A great list of page-flip examples, I will look through. Thanks. – jl. Nov 12 '09 at 12:43
Would you have any references on how to create them out of scratch? Thanks. – jl. Nov 12 '09 at 12:52
Thanks this is perfect! – jl. Nov 13 '09 at 4:07
feedback

If you need something simple, and don't want to delve into codes, try out pressmo: http://pressmo.com/example3/1

It works faster on slower computers than most of other similar services and what's important you keep your flipbook on your own computer/web server (as online flash or offline executable). To create a flip page you have to upload your content as a PDF file (which can be easily obtained from Word or Open Office).

Usually a good solution for flipbooks is to keep the number of your pages even, otherside the user will not have the possibility to turn the last site. All pages should be similar size also.

link|improve this answer
feedback

You can use Flex Application

Like this right: Sample Book

Code is here: Source Code

link|improve this answer
Do you have any good reference for flex flip page? Thanks. – jl. Nov 12 '09 at 12:40
Please elaborate on how to use Flex Application... – milesmeow Nov 20 '09 at 6:33
feedback

protected by ho1 Dec 27 '11 at 8:11

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.