gpt4 book ai didi

javascript - 使用表构建的 Jquery Accordion 菜单

转载 作者:太空宇宙 更新时间:2023-11-04 03:19:41 24 4
gpt4 key购买 nike

就像标题所说...我需要帮助使用 jquery 动画构建更好的 Accordion 菜单。但是,菜单是使用表格构建的,我无权访问 HTML。这是我目前所做的,但我对结果不满意(它太生涩了)。

jq16 = jQuery.noConflict(true);
jq16(document).ready(function(){
jq16("td.categorySidebar table tr").each(function() {
//IE fix - get all tr and rebuild to end of table
jq16(this).appendTo("td.categorySidebar table tbody");
//get all level1 td
if(jq16(this).children().hasClass('categorySidebarLabelLevel1')) {
//add same td class to parent tr and apply show function
jq16(this).addClass(jq16(this).children().attr('class'));
//add hover to level1 tr
jq16(this).hover(
function(){
if(jq16(this).hasClass('categorySidebarLabelSelected')
|| jq16('> td table tr td',this)
.hasClass('categorySidebarLabelSelected')) {
return false;
} else {
jq16('> td table',this).stop(true, true).toggle();
}
}
);
}
});
//on document load build table of sub-levels and check to see
// what is selected to show/hide
jq16("td.categorySidebar table tr[class^='categorySidebarLabelLevel1']")
.each(function(k,v) {
//wrap the sub-levels in table and hide
var subCat = jq16(this).nextUntil("[class^='categorySidebarLabelLevel1']")
.wrapAll('<table style="display: none;" ><tbody></tbody></table>');
//Append table of sub-levels to level1 td so we can apply hover function
jq16(subCat).parent().parent().appendTo(jq16(this).children('td'));
//Check level1 to see if it is selected
if(jq16(this).hasClass('categorySidebarLabelSelected')) {
jq16(this).children().children().show();
}
//check each sub-level to see if it is selected
jq16(subCat).each(function() {
if(jq16(this).children().hasClass('categorySidebarLabelSelected')) {
jq16(this).parent().parent().show();
}
});
});
});

http://jsfiddle.net/u1unzpzs/2/

最佳答案

您可以使用 css 转换实现 Accordion 效果:

table, tr, td {
display:block;
}
table table table {
max-height: 0;
overflow: hidden;
-webkit-transition: max-height 0.8s;
-moz-transition: max-height 0.8s;
transition: max-height 0.8s;
}
table.open {
max-height: 200px; /* should be taller than largest sub table */
}

和切换类:

jq16('> td table', this).toggleClass('open');

Example

关于javascript - 使用表构建的 Jquery Accordion 菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28091851/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com