Created
April 27, 2023 08:01
-
-
Save Mahfuj1990/2c08cb01facc2470ce4a5cc844b3d47e to your computer and use it in GitHub Desktop.
Carousal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.carousel { | |
width: 500px; | |
height: 300px; | |
overflow: hidden; | |
position: relative; | |
} | |
.carousel-image { | |
width: 100%; | |
height: 100%; | |
position: absolute; | |
top: 0; | |
left: 0; | |
opacity: 0; | |
transition: opacity 1s ease-in-out; | |
} | |
.carousel-image.active { | |
opacity: 1; | |
} | |
.carousel-button { | |
position: absolute; | |
top: 50%; | |
transform: translateY(-50%); | |
border: none; | |
background-color: rgba(0, 0, 0, 0.5); | |
color: #fff; | |
padding: 10px; | |
cursor: pointer; | |
} | |
#prevBtn { | |
left: 0; | |
} | |
#nextBtn { | |
right: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment