最后,如果找到了我需要的正确的jquery脚本。
但是我想改变效果,现在它来自左上角,我想让它向左滑动。
这是代码:
<script type="text/javascript">
$(document).ready(function() {
//add the click event to each element with the toggle class
$('a.toggle').click(function(){
if ($(document).data("toggle-id")) {
//item was already selected, hide it
$("div.toggle#" + $(document).data("toggle-id")).hide(1000);
}
//save the new id for later, then show it
$(document).data("toggle-id", $(this).text().toLowerCase());
$("div.toggle#" + $(document).data("toggle-id")).show(1000)
});
});
</script>
答案 0 :(得分:0)
您需要修改此行
$("div.toggle#" + $(document).data("toggle-id")).show(1000)
尝试类似
的内容$("div.toggle#" + $(document).data("toggle-id")).show('slide', {direction: 'left'}, 1000)