Amber Shopify Project created using ReactJS+React-Redux with GraphQL API integration. Storefront Shopify API: https://github.com/Shopify/shopify-app-js/tree/main/packages/api-clients/storefront-api-client#readme
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

CarouselContainer.jsx 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import React from "react";
  2. import { Box, IconButton } from "@mui/material";
  3. import ArrowBackIosIcon from "@mui/icons-material/ArrowBackIos";
  4. import ArrowForwardIosIcon from "@mui/icons-material/ArrowForwardIos";
  5. import mainImage1 from "../../assets/images/MAINHEADER-01.webp";
  6. import mainImage2 from "../../assets/images/MAINHEADER-02.webp";
  7. import mainImageMobile from "../../assets/images/mainwallpaper-mobile.jpg";
  8. import Carousel from 'react-material-ui-carousel'
  9. const CarouselContainer = () => {
  10. const items = [
  11. { img_src: mainImage1, alt_name: "Image 1" },
  12. { img_src: mainImage2, alt_name: "Image 2" },
  13. ];
  14. return (
  15. <Carousel indicators={false} autoPlay={true} interval={3000}>
  16. {items?.map(({ img_src, alt_name }, index) => (
  17. <Box
  18. key={index}
  19. component="img"
  20. src={img_src}
  21. alt={alt_name}
  22. sx={{
  23. width: "100%",
  24. objectFit: "cover",
  25. transition: "opacity 0.5s ease-in-out",
  26. zIndex: 0,
  27. }}
  28. />
  29. ))}
  30. </Carousel>
  31. );
  32. };
  33. export default CarouselContainer;