为了账号安全,请及时绑定邮箱和手机立即绑定

如何根据活动幻灯片更改正文背景颜色?

如何根据活动幻灯片更改正文背景颜色?

慕桂英546537 2023-05-25 16:23:03
我正在使用 Swiper(没有 jQuery,纯 JavaScript)来显示 11 张幻灯片。background-color我想根据用户所在的幻灯片更改正文。此代码工作正常,但当滑块重新启动时,它会保留最后一张幻灯片的颜色,而不是从第一张幻灯片重新开始: swiper.on('transitionEnd', function(e) {     if (this.activeIndex == 1) {       document.querySelector("body").style.background = '#F4F1C1';     }     if (this.activeIndex == 2) {       document.querySelector("body").style.background = '#DCDDDE';     }     if (this.activeIndex == 3) {       document.querySelector("body").style.background = '#ECEBDF';     }     if (this.activeIndex == 4) {       document.querySelector("body").style.background = '#F2E3E3';     }     if (this.activeIndex == 5) {       document.querySelector("body").style.background = '#D0EFF0';     } });在这个 JSFiddle上,您可以看到在幻灯片 11 之后,滑块返回到幻灯片 1,但颜色仍然是 ,#999999而不是#F4F1C1。为什么索引没有重新启动?
查看完整描述

1 回答

?
梵蒂冈之花

TA贡献1900条经验 获得超5个赞

Swiper 将其数组索引移动 1。如文档中所示

//img3.sycdn.imooc.com/646f1b050001e73e13080075.jpg

所以你正确地从 index 开始1但没有考虑 index 的第 11 项12

您可以this.realIndex根据文档使用来获取循环项的正确索引。


查看完整回答
反对 回复 2023-05-25
  • 1 回答
  • 0 关注
  • 87 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信