123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- import React from "react";
- import { Box, IconButton } from "@mui/material";
- import ArrowBackIosIcon from "@mui/icons-material/ArrowBackIos";
- import ArrowForwardIosIcon from "@mui/icons-material/ArrowForwardIos";
- import mainImage from "../../assets/images/mainwallpaper.jpg"
-
- const Carousel = () => {
-
- const items = [
- { img_src: mainImage, alt_name: "Image 1" }
- ]
-
- const [currentIndex, setCurrentIndex] = React.useState(0);
-
- const handlePrev = () => {
- setCurrentIndex((prevIndex) =>
- prevIndex === 0 ? items.length - 1 : prevIndex - 1
- );
- };
-
- const handleNext = () => {
- setCurrentIndex((prevIndex) =>
- prevIndex === items.length - 1 ? 0 : prevIndex + 1
- );
- };
-
- return (
- <Box
- sx={{
- position: "relative",
- display: "flex",
- alignItems: "center",
- justifyContent: "center",
- width: "100%",
- height: "100vh",
- overflow: "hidden",
- }}
- >
- {items.map((item, index) => (
- <Box
- key={index}
- component="img"
- src={item.img_src}
- alt={item.alt_name}
- sx={{
- width: "100%",
- height: "100%",
- objectFit: "cover",
- display: index === currentIndex ? "block" : "none",
- }}
- />
- ))}
-
- <IconButton
- onClick={handlePrev}
- sx={{
- position: "absolute",
- left: 16,
- top: "50%",
- transform: "translateY(-50%)",
- color: "white",
- backgroundColor: "rgba(0, 0, 0, 0.5)",
- "&:hover": { backgroundColor: "rgba(0, 0, 0, 0.7)" },
- }}
- >
- <ArrowBackIosIcon />
- </IconButton>
-
- <IconButton
- onClick={handleNext}
- sx={{
- position: "absolute",
- right: 16,
- top: "50%",
- transform: "translateY(-50%)",
- color: "white",
- backgroundColor: "rgba(0, 0, 0, 0.5)",
- "&:hover": { backgroundColor: "rgba(0, 0, 0, 0.7)" },
- }}
- >
- <ArrowForwardIosIcon />
- </IconButton>
- </Box>
- );
- };
-
- export default Carousel;
|