HTML:
Home > Web Front-end > JS Tutorial > QQ space top folding tear effect sample code_jquery

QQ space top folding tear effect sample code_jquery

WBOY
Release: 2016-05-16 16:44:37
Original
1344 people have browsed it

效果:
QQ space top folding tear effect sample code_jquery 
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);
});

});
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template