1
我正在尋找重新定義我的切換功能。現在它切換正常,但是,第一個切換「打開」兩個不同的部分 - 這很好。關閉它們時,我想同時關閉它們,或者至少要先關閉它們。此外,我還想關閉這兩個,如果有的話,但列表被點擊。jQuery更改切換順序關閉
$('#LoginButton').click(function(){
$('.username').animate({
width : 'toggle'
}, 1000, 'swing',function(){ //Set new LoginButton width
var newWidth = ($('.username').width()); //get new width
$('#LoginButton').toggleClass('expanded'); //just for rounded corners
$("#profilesettings").width(newWidth).toggle(300); //new list width animation
});
});
我在看什麼:Fiddle
任何幫助是極大的讚賞。謝謝。
嘿嘿,謝謝。我添加了一些東西來完成它(http://jsfiddle.net/EverybdyLies/wxXyM/2/)可以這樣做,對吧?非常感謝 :)! – Christophe 2013-04-05 09:40:30