QQ空间顶部折页撕开效果示例代码

效果:
QQ空间顶部折页撕开效果示例代码_第1张图片 
HTML:
复制代码 代码如下:






JS:
复制代码 代码如下:

$(document).ready(function(){

$("#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);
});

});

你可能感兴趣的:(QQ空间顶部折页撕开效果示例代码)