SEO Tips - How to add Page peel or Page flip effect to Blogger blog?

The page peel/flip effect hides the content and reveals it when mouse pointer is hovered there. This effect is present on most of the websites. Today we will learn to add this page flip effect to your blog.

Adding Page Flip Effect

1. Go to Blogger dashboard > Design > Edit HTML and add following code BEFORE </head>
<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/AVvXsEi7aRb_b0IHRCqbIoyaNVuNQvcrELYUxdRM7uZhMakUnFI34QEyWaBmle5mFZZcs_dm66vzYEsFF25c4kg-m49vkUbGKYtuZfv2SD3wpST-74D3MA4wzof5JT_9D-UbTJg6XGPr-eDi7QNy/s1600/page+peel.JPG) 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>

Edit image URL with your own.

2. Add following code AFTER <body>
<div id='pageflip'>
<a href='http://film-cast.blogspot.com'><img alt='' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgilviY_VLs-Slkr2uGv4vrM81_is3RsTzDQPIZCiUtdpMNIMeQnz-PhXgRjeMVT0tcEHo5xOgJBNA_K42ZT7YR95Qr9i0BA2BqtJ-ncnUgcVkX4joPlzgsqpwTOBTLbVA5zUN8WvipXYBz/s1600/page_flip.png'/></a>
<div class='msg_block'></div>
</div>

Change the refferance URL with your own.

Finally save your template.

Belum ada Komentar untuk "SEO Tips - How to add Page peel or Page flip effect to Blogger blog?"

Posting Komentar

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel