我想在我的网页中的导航菜单上使用 animate.css。例如菜单飞出屏幕导航。主要问题是:如何延迟我单击的页面加载,直到动画完全完成。现在动画被切断,因为下一页加载。
$(document).ready(function(){
$('#list').click(function(){
$(this).addClass('animated shake');
window.setTimeout( function(){
$('#list').removeClass('animated shake');
}, 1000);
});
});