/* 酷站代码整理 http://www.5icool.org */ $(function(){ systole(); }); function systole(){ if(!$(".history").length){ return; } var $warpele = $(".history-date"), $targeta = $warpele.find("h2 a,ul li dl dt a"), parenth, eletop = []; parenth = $warpele.parent().height(); $warpele.parent().css({"height":59}); settimeout(function(){ $warpele.find("ul").children(":not('h2:first')").each(function(idx){ eletop.push($(this).position().top); $(this).css({"margin-top":-eletop[idx]}).children().hide(); }).animate({"margin-top":0}, 1600).children().fadein(); $warpele.parent().animate({"height":parenth}, 2600); $warpele.find("ul").children(":not('h2:first')").addclass("bounceindown").css({"-webkit-animation-duration":"2s","-webkit-animation-delay":"0","-webkit-animation-timing-function":"ease","-webkit-animation-fill-mode":"both"}).end().children("h2").css({"position":"relative"}); }, 600); $targeta.click(function(){ $(this).parent().css({"position":"relative"}); $(this).parent().siblings().slidetoggle(); $warpele.parent().removeattr("style"); return false; }); };