當複選框被選中時,表格從右側滑動,而當複選框未被選中時,表格從左到右。如何讓它從上到下或從下到上滑動?使用jQuery淡入淡出
$(document).ready(function() {
$('input[type="checkbox"]').click(function() {
if ($(this).prop("checked") == true) {
$('#loaddiv').fadeIn('slow', function() {
$(this).delay(2000).fadeOut('slow');
});
$('#tbdata').hide(2500);//this code casing slide from right to left
}
else if ($(this).prop("checked") == false) {
$('#loaddiv').fadeIn('slow', function() {
$(this).delay(2000).fadeOut('slow');
});
$('#tbdata').show(2500);// this code causing slide from right to left
}
});
});
檢查herer http://jsfiddle.net/z7rgsduv/
可以在http://jsfiddle.net中顯示此代碼的工作示例嗎?我看不出有什麼理由讓這個代碼做任何事情? –
如果您觀察'$('#tbdata')。show(2500);',這裏的延遲導致了表格。你可以忽略其餘的代碼。 –