gpt4 book ai didi

swiper.js - 为 Swiper Pagination Bullet 添加多个类

转载 作者:行者123 更新时间:2023-12-05 06:58:43 27 4
gpt4 key购买 nike

我正在尝试为每个分页项目符号添加一个新的 element class,并且我想保留 swiper 的默认样式。所以我做的是

pagination={
clickable: true,
bulletClass: `swiper-pagination-bullet ${style['feature-pagination']}`,
}

我能够获得 swiper-pagination-bullet 的样式和我的自定义样式。但是,其他功能不再起作用(例如点击功能、主动选择)

我试着检查代码,看起来 swiper 目前没有处理多个类,因为这个 line of code返回 empty 因为它只需要一个类。

有什么解决办法吗?我喜欢为此创建拉取请求,但我想问社区我在这里失踪。

最佳答案

更新

现在它支持多个类 changes .您可以通过用空格分隔它们来添加多个类

pagination={
clickable: true,
bulletClass: `swiper-pagination-bullet ${style['feature-pagination']}`,
}

所以我请求了一个 enhancement to Swiper Repository .截至目前,处理bulletClassbulletActiveClass 的拉取请求仍未被接受。

同时,这是最好的解决方法。

pagination={
clickable: true,
bulletClass: `swiper-pagination-bullet`,
renderBullet: (index, className) => {
return `<span class="${className} feature-pagination"></span>`;
}
}

关于swiper.js - 为 Swiper Pagination Bullet 添加多个类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64548304/

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