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
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Carousel.jsx 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 mainImage from "../../assets/images/mainwallpaper.jpg"
  6. const Carousel = () => {
  7. const items = [
  8. { img_src: mainImage, alt_name: "Image 1" }
  9. ]
  10. const [currentIndex, setCurrentIndex] = React.useState(0);
  11. const handlePrev = () => {
  12. setCurrentIndex((prevIndex) =>
  13. prevIndex === 0 ? items.length - 1 : prevIndex - 1
  14. );
  15. };
  16. const handleNext = () => {
  17. setCurrentIndex((prevIndex) =>
  18. prevIndex === items.length - 1 ? 0 : prevIndex + 1
  19. );
  20. };
  21. return (
  22. <Box
  23. sx={{
  24. position: "relative",
  25. display: "flex",
  26. alignItems: "center",
  27. justifyContent: "center",
  28. width: "100%",
  29. height: "100vh",
  30. overflow: "hidden",
  31. }}
  32. >
  33. {items.map((item, index) => (
  34. <Box
  35. key={index}
  36. component="img"
  37. src={item.img_src}
  38. alt={item.alt_name}
  39. sx={{
  40. width: "100%",
  41. height: "100%",
  42. objectFit: "cover",
  43. display: index === currentIndex ? "block" : "none",
  44. }}
  45. />
  46. ))}
  47. <IconButton
  48. onClick={handlePrev}
  49. sx={{
  50. position: "absolute",
  51. left: 16,
  52. top: "50%",
  53. transform: "translateY(-50%)",
  54. color: "white",
  55. backgroundColor: "rgba(0, 0, 0, 0.5)",
  56. "&:hover": { backgroundColor: "rgba(0, 0, 0, 0.7)" },
  57. }}
  58. >
  59. <ArrowBackIosIcon />
  60. </IconButton>
  61. <IconButton
  62. onClick={handleNext}
  63. sx={{
  64. position: "absolute",
  65. right: 16,
  66. top: "50%",
  67. transform: "translateY(-50%)",
  68. color: "white",
  69. backgroundColor: "rgba(0, 0, 0, 0.5)",
  70. "&:hover": { backgroundColor: "rgba(0, 0, 0, 0.7)" },
  71. }}
  72. >
  73. <ArrowForwardIosIcon />
  74. </IconButton>
  75. </Box>
  76. );
  77. };
  78. export default Carousel;