提问人:Beverly Benson 提问时间:11/16/2023 最后编辑:Beverly Benson 更新时间:11/18/2023 访问量:45
滑动器动态项目符号添加属性宽度 [关闭]
Swiper dynamic bullets adding attribute width [closed]
问:
我正在为我的项目使用刷卡器,我需要动态项目符号。当我添加到 swiper.js 时,它会自动添加宽度为 0px 的属性样式
但是当我滑动刷卡器时,它变为宽度:620px
默认情况下,我需要删除此属性样式或设置 620px,我该怎么做?截图dynamicBullets: true
new Swiper('.clients__slider', {
modules: [Navigation, Pagination],
observer: true,
observeParents: true,
slidesPerView: 1,
spaceBetween: 15,
autoHeight: true,
speed: 800,
loop: true,
pagination: {
el: '.swiper-pagination',
clickable: true,
dynamicBullets: true,
}});
这是我滑动滑动刷卡之前的代码:
<div class="swiper-pagination swiper-pagination-clickable swiper-pagination-bullets swiper-pagination-horizontal swiper-pagination-bullets-dynamic" style="width: 0px;">
这是我滑动滑动刷卡后的代码:
<div class="swiper-pagination swiper-pagination-clickable swiper-pagination-bullets swiper-pagination-horizontal swiper-pagination-bullets-dynamic" style="width: 620px;">
我试图用我自己的JS代码设置宽度,并使用SCSS设置宽度
答: 暂无答案
评论