HACKERS UNDERGROUND © 2012 BY RISHABH SHARMA

Monday, 1 August 2011

Create a Page Peel Effect With Jquery

This is the new Tutorial Blogger blog.
Let's review a topic about How to Create a Page Peel Effect With Jquery. How to Create a Page Peel Effect With Jquery ? ...

1. Go to Dashboard, click Design, click Edit HTML

2. Find code of HTML below:



</head>
     you can use (Ctrl+F) to find easily

3. Right Before </head> - place code of HTML below:

<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(http://www.wallheaven.com/subscribe.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. Find code of HTML below:

<body>
     you can use (Ctrl+F) to find easily

5. Right After <body> - place code of HTML below:

<div id='pageflip'>
<a href='http://feeds.feedburner.com/tutorialwebforblogger'><img alt='' src='http://www.wallheaven.com/page_flip.png'/></a>
<div class='msg_block'></div>
</div>

Notes:
You can change:

#  http://feeds.feedburner.com/tutorialwebforblogger

6. Click Save Template and Done.

Now, you've already Created a Page Peel Effect With Jquery.

0 comments:

Post a Comment

 
Design by HACKERS UNDERGROUND
HACKERS UNDERGROUND © 2012 BY RISHABH SHARMA