-1

我在我的一个反应项目中使用 https://www.npmjs.com/package/react-multi-carousel并且我已经实现了它并且它工作正常。

我现在需要在轮播上实现文本(图例),就像https://codesandbox.io/s/lp602ljjj7一样,它使用另一个包,但我需要那个场景而不是那个包,因为我的需要不同(使用 nextjs所以多轮播支持ssr,因此使用它)。

我唯一需要知道如何使用react-multi-carousel.

我的代码示例:https ://codesandbox.io/s/react-multi-carousel-playground-bt3v7

4

2 回答 2

2

将 return 语句的结构更改为以下结构。

然后你可以将图例的值存储在图像数组中,并将值传递给p标签

const Simple = ({ deviceType }) => {
  return (
    <Carousel
      ssr
      partialVisbile
      deviceType={deviceType}
      itemClass="image-item"
      responsive={responsive}
    >
      {images.slice(0, 5).map((image, index) => {
        return (
          <div key={index} style={{ position: "relative" }}>
            <img
              draggable={false}
              alt="text"
              style={{ width: "100%", height: "100%" }}
              src={image}
            />
            <p
              style={{
                position: "absolute",
                left: "50%",
                bottom: 0,
                color: "white",
                transform: " translateX(-50%)"
              }}
            >
              Legend:{index}.
            </p>
          </div>
        );
      })}
    </Carousel>
  );
};

export default Simple;
于 2020-01-09T06:29:39.543 回答
-1

现场演示

您应该更改数组结构,如下所示。

const images = [
    {
        image: "https://images.unsplash.com/photo-1549989476-69a92fa57c36?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=800&q=60",
        text: "First image",
    }
];

然后在循环内添加文本并按照我们的方式设置样式!

const Simple = ({ deviceType }) => {
    return (
        <Carousel
            ssr
            partialVisbile
            deviceType={deviceType}
            itemClass="image-item"
            responsive={responsive}
        >
            {images.map(image => {
                return (
                    <div>
                        <img
                            draggable={false}
                            alt="text"
                            style={{ width: "100%", height: "100%" }}
                            src={image.image}
                        />
                        {/* Have to style so this should see over the image */}
                        <span>{image.text}</span>
                    </div>
                );
            })}
        </Carousel>
    );
};
于 2020-01-09T06:18:59.170 回答