I want to ask that, is it possible to make any cover opening effect with JQuery or with any other JS code? I don’t mean that page turning, I mean cover opening (like thick covers).
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
What you’re asking is not possible in current browsers, at least not in any proper way. In the future, you’ll be able to use CSS 3D Transforms to do that kind of stuff but that’s a long way ahead. Read more about CSS 3D Transorms here.
The reason why a good lookin cover opening effect is impossible is that the ‘cover’ should be skewed and stretched for it to look good, and that’s just not possible, even with Javascript.
The only effect you’ll be able to do with basic CSS + JS is a page whose width is animated so that it looks kinda like a page turn, but it’s not very convincing.
If you’re willing to work with canvases, that might have some possibilities. Haven’t seen it done anywhere yet though – I guess 3D stuff on canvas can be a bit tricky.