Response title
This is preview!
$("#L01").mouseover(function(e){
$("#I01").animate({left: e.pageX + "px", top: e.pageY + "px"}, 1 );
lefter = e.pageX - 50;
toper = e.pageY - 61;
if(lefter<10){lefter=10;}
if(toper<10){toper=10;}
$("#I01").animate({opacity: 'show', width: "99px", height: "123px", left: (lefter) + "px", top: (toper) + "px"}, 1500 );
});
$("#I01").mouseout(function(e){
$("#I01").animate({width: "0px", height: "0px", left: "+=50px", top: "+=61px", opacity: "hide"}, 1500 );
});
© 2013 jQuery Foundation
Sponsored by and others.