To add Peel effect in your Blogger, Just Follow steps given below:
- Log in to your blogger account and Go to Design >> Edit HTML
- Find this tag by using Ctrl+F </head>
- Paste below code Before </head> tag
<!-- Peeling effect in image -->
<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/AVvXsEiXsVnLzL5v8tWWB5bEV5UG9zi6kp31LVkU4Y9qkll7AYQu80k4OJURmNTWxZLr87XcOFxlH79VSlU4vzuzeSzRyIjKG_1CqVS5S0qeZ7OdxZgKqHTyx3T7PwgCYi8Q7Fl3VGleGpV56fk/s1600/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
$("#pageflip").hover(function() {
$("#pageflip img , .msg_block").stop()
.animate({
width: '307px',
height: '319px'
}, 500);
} , function() {
$("#pageflip img").stop()
.animate({
width: '50px',
height: '52px'
}, 220);
$(".msg_block").stop()
.animate({
width: '50px',
height: '50px'
}, 200);
});
});
</script>
<!-- Peeling effect in image end -->
2. Now again Find this tag by using Ctrl+F <body>
2. Now again Find this tag by using Ctrl+F <body>
<div id='pageflip'>
<a href='http://feeds2.feedburner.com/s2p'><img alt='' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiXsVnLzL5v8tWWB5bEV5UG9zi6kp31LVkU4Y9qkll7AYQu80k4OJURmNTWxZLr87XcOFxlH79VSlU4vzuzeSzRyIjKG_1CqVS5S0qeZ7OdxZgKqHTyx3T7PwgCYi8Q7Fl3VGleGpV56fk/s1600/Newspaper-Feed-icon.png'/></a>
<div class='msg_block'></div>
</div>
- You can change Green URL with your Image URL
- You can change RED URL with your Feed URL
Go For Demo
You are done