我需要將jQuery切換和動畫功能鏈接在一起。當我點擊框時,其大小應該改變。我的代碼js fiddles snip就在這裏。爲什麼它不起作用?它在啓動時消失。Jquery爲動畫功能切換動作
$(document).ready(function() {
$('.adiv').toggle(
function(){
$(this).animate({
width: "150",
height: "150",
}, 1000);
},
function(){
$(this).animate({
width: "77",
height: "77",
}, 1000);
});
});
正確使用它! – Top25 2015-02-10 01:43:34