How To Add Beautiful Page Peel Effect with jQuery

Posted by Lasantha Bandara on August 22nd, 2009 File Under : css, feeds, jquery7 Comments

1.Login to your blogger dashboard--> layout- -> Edit HTML

2.Don't Click on "Expand Widget Templates"

3.Scroll down to where you see ]]></b:skin> tag:

4.Copy below code and paste it just before the ]]></b:skin> tag.

#pageflip {
position: relative;
}
#pageflip img {
width: 50px; height: 52px;
z-index: 99;
position: absolute;
right: 0; top: 0;
-ms-interpolation-mode: bicubic;
}
#pageflip .msg_block {
width: 50px; height: 50px;
position: absolute;
z-index: 50;
right: 0; top: 0;
background: url(http://2.bp.blogspot.com/_p4Te9Li52fs/So9Qb5J1yWI/AAAAAAAAAAU/8_mR7vt-tCw/subscribe.png) no-repeat right top;
text-indent: -9999px;
}

Note : Please host 'subscribe.png' image yourself.

5.Scroll down to where you see </head> tag:

6.Copy below code and paste it just before the </head> tag.

<script src='http://code.jquery.com/jquery-latest.js' type='text/javascript'/>
<script type='text/javascript'>
$(document).ready(function(){

//Page Flip on hover

$(&quot;#pageflip&quot;).hover(function() {
$(&quot;#pageflip img , .msg_block&quot;).stop()
.animate({
width: &#39;307px&#39;,
height: &#39;319px&#39;
}, 500);
} , function() {
$(&quot;#pageflip img&quot;).stop()
.animate({
width: &#39;50px&#39;,
height: &#39;52px&#39;
}, 220);
$(&quot;.msg_block&quot;).stop()
.animate({
width: &#39;50px&#39;,
height: &#39;50px&#39;
}, 200);
});


});
</script>

6.Scroll down to where you see <body> tag:

7.Copy below code and paste it just after the <body> tag.

<div id='pageflip'>
<a href='http://feeds2.feedburner.com/blogspot/WyNa'>
<img alt='' src='http://4.bp.blogspot.com/_p4Te9Li52fs/So9QXjPscRI/AAAAAAAAAAM/Vl2QGxYn38k/page_flip.png'/>
<span class='msg_block'>Subscribe via RSS</span>
</a>
</div>

Note : Please host 'page_flip.png' image yourself.

Replace 'http://feeds2.feedburner.com/blogspot/WyNa' with your feed address.

8.Click on "Save Templates" and now you are done.It will look like this :

When your mouse brings towards above icon it willlook like this :

File Under : css, feeds, jquery

7 Responses to “How To Add Beautiful Page Peel Effect with jQuery”

  1. raghibsuleman says:

    Thank u so much here my page link
    http://indiatimessite.blogspot.com/

  2. KAMEHA says:

    Wow great tuto ,thanks
    http://bigtos.blogspot.com

  3. PrAbHaKaRaN says:

    verry nice tips and website.thanks http://apparu.tk/http://apparu.tk/

  4. Anirudh ~ Except Nothing | says:

    Good Article . www.exceptnothing.com

  5. rajon says:

    www.rajonspi.blogspot.com

  6. Manadoparabola says:

    done 'n work at http://manado-parabola.blogspot.com/
    thank you...

  7. Dattatray Aware (web designer) says:

    Thank you nice!

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.