4

我使用了 react-slick 并使用 Slider 组件制作了一个轮播。代码如下,

const carousel = (props) => {
    return (
        <div style={{ height: '50%', marginTop: '20px' }}>
            <Slider {...settings}>
                <div className={text__bar}>
                    <div >
                        <font>Lorum Ipsum 1</font>
                    </div>
                    <div className={slide1} />
                </div>
                <div className={text__bar}>
                    <div>
                        <font>Lorum Ipsum 2</font>
                    </div>
                    <div className={slide1} />
                </div>
                <div className={text__bar}>
                    <div>
                        <font>Lorum Ipsum 3</font>
                    </div>
                    <div className={slide1} />
                </div>
            </Slider>
            <div className={purple__bar}></div>
        </div>
    );
};

和设置对象,

const settings = {
    dots: true,
    infinite: true,
    speed: 500,
    slidesToShow: 1,
    slidesToScroll: 1,
    autoplay: true,
    autoplaySpeed: 5000,
    className: SlickMain,
    dotsClass: button__bar,
    arrows: false,
};

我添加了一些额外的 CSS 来设置我的轮播点(按钮)的样式,如下所示,

点栏

当开发人员工具检查与当前显示的幻灯片相关的按钮时,会注入一个名为“slick-active”的 CSS 类

注入级

我需要做的是将与幻灯片相对应的按钮的背景颜色更改为黑色,以重现当前颜色的紫色。

我所做的是,

.button__bar li.slick-active button {
    opacity: .75;
    color: #000
}

但它不会起作用。我错过了什么?

.button__bar是我在设置对象中赋予点的dotsClass。

4

3 回答 3

9

发生这种情况是因为我正在使用 CSS-Modules 加载我的 CSS 文件。在下面的代码示例中,您可以清楚地看到发生了什么。

https://codesandbox.io/s/1z2lnox5rq?fontsize=14

因此,作为解决方案,我所做的是将以下方法添加到设置对象。

const settings = {
  dots: true,
  infinite: true,
  speed: 1000,
  slidesToShow: 1,
  slidesToScroll: 1,
  autoplay: true,
  autoplaySpeed: 3000,
  className: slickMain,
  dotsClass: button__bar,
  arrows: false,
  beforeChange: (prev, next) => {
    this.setState({ currentSlide: next });
  },
  // afterChange: (index) => this.setState({ currentSlide: index }),
  appendDots: dots => {
    return (
      <div>
        <ul>
          {dots.map((item, index) => {
            return (
              <li key={index}>{item.props.children}</li>
            );
          })}
        </ul>
      </div>
    )
  },
  customPaging: index => {
    return (
      <button style={index === this.state.currentSlide ? testSettings : null}>
        {index + 1}
      </button>
    )
  }
};

为了解决我的问题,我曾经beforeChange获取下一张幻灯片索引并将其保存在状态中。然后使用appendDotsadiv和 a ulli将其注入到点栏部分。在内部li,abutton作为子道具使用customPaging方法传递。当当前幻灯片等于处于customPaging状态的 的索引时,则为一个类注入背景颜色。

const testSettings = {
    backgroundColor: 'rgba(255, 255, 255, 0.8)',
    outline: '0'
}
于 2019-03-25T21:07:14.540 回答
3

如果有人在这里使用材料 ui,它是如何工作的

const settings: Settings = {
  dots: true,
  infinite: true,
  speed: 500,
  slidesToShow: 1,
  slidesToScroll: 1,
  dotsClass: `slick-dots ${classes.dots}`,
};
// your classes created with material ui
makeStyles((theme: Theme) => ({
// may not be the best way but it works
  dots: {
    bottom: 0,
    "& li.slick-active button::before": {
      color: theme.palette.primary.main,
    },
    "& li": {
      "& button::before": {
      fontSize: theme.typography.pxToRem(14),
      color: "#fff",
      opacity: 0.5,
    },
  }
}))

这是一个代码框链接 https://codesandbox.io/s/bold-snow-h9rwq?file=/src/App.tsx

请注意,我没有通过导入 slick css 来检查它,即

// Import css files
import "slick-carousel/slick/slick.css";
import "slick-carousel/slick/slick-theme.css";

但改用了cdn

于 2021-02-04T20:57:14.770 回答
1
于 2020-06-05T04:26:46.550 回答