效果:
HTML:
JS:
$ (문서).ready(function(){
$("#pageflip").hover(function(){
$("#pageflip img , .msg_block").stop().animate ({너비: '307px', 높이: '319px'}, 500);
},function(){
$("#pageflip img").stop().animate({너비: '50px ', 높이: '52px'}, 220);
$(".msg_block").stop().animate({너비: '50px', 높이: '50px'}, 200); );
});