$(".item-holder").each(function(){ $(this).bind("mouseenter", function(e) { e.preventDefault(); var t = setTimeout(function(){ $(this).find(".mindex-blog-meta").animate({ left:"0" },500); $(this).find(".ret").animate({ top:"60%" },600); }); },300)});$(".item-holder").each(function(){ $(this).bind("mouseleave", function(e) { e.preventDefault(); clearTimeout(t); $(this).find(".mindex-blog-meta").animate({ left:"-60%" },500); $(this).parent().find(".ret").animate({ top:"100%" },600); });});
添加回答
举报
0/150
提交
取消