Looking for assistance with my vertical carousel project.
Is there a way to create a vertical carousel in bootstrap 5 with the previous image fixed?
I found a slider on this website: zara.com/jp/en/
I want to maintain the previous image in a fixed position while scrolling up or down through the current image.
I attempted using position: fixed;
on the previous image for testing, but it did not work as expected.
html:
<!DOCTYPE html>
<html lang="en">
...
style.css:
html, body {
width: 100%;
height: 100%;
...
index.js:
$("#vertical-carousel").bind("mousewheel DOMMouseScroll", function (e) {
...