日期:2014-05-17 浏览次数:20822 次
$(function(){
//Larger thumbnail preview 
          $(".indexscell").hover(function() {
             $(this).css({'z-index' : '10000'});
             $(this).find('img').addClass("hover").stop().animate({
                   marginTop: '0px', 
                   marginLeft: '-30px', 
                   top: '20%', 
                   left: '20%', 
                   width: '140px', 
                   height: '140px',
                    
             }, 200);
          } , function() {
             $(this).css({'z-index' : '0'});
             $(this).find('img').removeClass("hover").stop().animate({
                   marginTop: '30px', 
                   marginLeft: '0',
                   top: '0', 
                   left: '0', 
                   width: '80px', 
                   height: '80px', 
                    
             }, 400);
          });
});$(function(){
//Larger thumbnail preview 
          $(".indexscell").hover(function() {
             $(this).css({'z-index' : '10000'});
             $(this).find('img').addClass("hover").stop().animate({
                   marginTop: '0px',