1
我想做一個img反彈,然後在動畫準備就緒後,它將導航到我正在使用的目標:-webkit-animation:bounce .6s 6 alternate ease-out;CSS3 Bounce然後轉到鏈接
和延遲去利用動畫即時消息後鏈接(但其延遲:目標藏漢)
$('.footer a').click(function(e) {
var href = $(this).attr('href');
e.preventDefault();
setTimeout(function() { window.location.href = href; }, 3000); {
};
});
任何想法怎麼玩動畫,然後轉到頁?