Page peel effect using jQuery

tmirror
Page peel effect using jQuery
Page Peel is a popular page flip effect that when your cursor is passing over it, will show "what's behind" as if it would be a book. There are many ways to do this, many of them use flash files which makes it less customizable, however, the one that we will see in this post is made with jQuery. Usually, the content that is "behind", is an image for subscribing to feed, but you can put any image and link to any page. Demo You can see an example in this demo blog. How to Add the Page Curl Effect on Blogger 1. Log in to your Blogger dashsboard , select your blog > then go to Template > Edit HTML 2. Click anywhere inside the code area and search for the below tag by pressing the CTRL + F keys: </head> 3. Just before </head> copy and paste this script: <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js' type='text/javascript'/> <script> //<![CDATA[ $(document).ready(function(){ $("#pageflip&qu…