我使用本文作为指南使用 divi blurb 模块和文本模块创建了一些选项卡:https ://divilover.com/creating-custom-tabs-icons-using-blurbs/
jQuery代码在这里:
jQuery(document).ready(function($) {
/* Blurbs as Tabs */
$('.tab-title').each(function () {
var section_id = $(this).find("a").attr("href");
$(this).find("a").removeAttr("href");
$(this).click(function () {
$(this).siblings().removeClass("active-tab");
$(this).addClass("active-tab");
$('.tab-content').hide();
$(section_id).show();
});
});
});
它适用于桌面,但在移动设备上,我试图实现类似手风琴的效果,其中内容在每个简介(选项卡)下方打开,而不是所有选项卡都堆叠在上面。这是我正在处理的页面: https ://svycc.com/Bwell/services/
任何帮助将非常感激。