Friday, July 22, 2011

How to Add Peel Effect For Blogger

0 comments
This is cool effect to your blog.
I used Peel effect for RSS.click below link for Demo.













DEMO
(Top right Corner)

1. Log in to your blogger account and Go to Design >> Edit HTML

2. Find this tag by using Ctrl+F    </head>

3. Paste below code Before   </head> tag

<style type="text/css">
img { behavior: url(iepngfix.htc) }
#pageflip {
position: relative;
right: 0; top: 0;
float: right;
}
#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;
overflow: hidden;
position: absolute;
right: 0; top: 0;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEie0AhZT_R1DIef23wtPBqb0XTXIrwsRRRvBeDlu81RKyU1XgCuHKh2cm3emsZxJvjAkarZeHUkQSJGnURxDIskJu9kPOzodlZVfmipjXUiDX916-8fIsOQ_Dg3AM8WllKD3XZ1JTX7-Y0h/s320/Newspaper-Feed-icon.png) no-repeat right top;
}
</style>
<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>


4. Now again Find this tag by using Ctrl+F <body>

5. Paste below code After   <body>  tag

<div id='pageflip'>
<a href='http://feeds2.feedburner.com/Bloggertrix'><img alt='' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEikFwxnToVfo-eitD2YGmjfuDXF_-nbBhtYbNKH9AczoQGm1qD9k5GFmNrDjV1DPglbmcVWRt6zkVAk1lSZQ1u9L_4ZB9W2imtkANKo2i9GM5mUXB9cSpsoa-MtE7dGY8a1eZ8VHsoJllsj/s320/peel-image.png'/></a>
<div class='msg_block'></div>
</div>

* You can change pink URL with your URL
*  You can change RED URL with your Feed URL
6. Now click Save Template.
You are done.

Leave a Reply

Related Posts Plugin for WordPress, Blogger...