Stylish Page Peel effect for blogger Header Corner
* First go to your blogger Dashboard.
* Now click in Design tab and edit HTML.
* Click in small box to expand your blogger Template.
* Now find this code </head> by CTRL+F key.
* Copy below code and paste before </head>
<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>
<style type="text/css">
img { behavior: url(http://www.sohtanaka.com/web-design/examples/peeling-effect/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(http://santabanta.mywapblog.com/files/subscribenow.png) no-repeat right top;
}
</style>
* After above step find </body> by CTRL+F key.* Copy below code and paste before </body>
<div id="pageflip">
<a href="http://feeds2.feedburner.com/blogger9"><img src="http://santabanta.mywapblog.com/files/page-flip.png" alt="" /></a>
<div class="msg_block"></div>
* Now click to save your blogger Template now you are done.
No comments:
Post a Comment