我几乎不知道javascript。有人可以帮我制作可折叠块的动画吗?
$(document).ready(function() {
var button = $('#hideButton');
//check the cookie when the page loads
if ($.cookie('currentToggle') === 'hidden') {
togglePanel(button, false);
}
else {
togglePanel(button, true);
}
//handle the clicking of the show/hide toggle button
button.click(function() {
//toggle the panel as required, base on current state
if (button.text() === "+Показать блок контента") {
togglePanel($(this), true);
}
else {
togglePanel($(this), false);
}
});
});
function togglePanel(button, show) {
var panel = $('#KeywordsPanel');
if (show) {
panel.removeClass('hidden');
button.text('-Скрыть блок контента');
$.cookie('currentToggle', '', { path: '/' });
}
else {
panel.addClass('hidden');
button.text('+Показать блок контента');
$.cookie('currentToggle', 'hidden', { path: '/' });
}
}
这就是我目前拥有的 - http://jsfiddle.net/HbPF5