vue-carousel-3d
vue-carousel-3d copied to clipboard
Is it possible to customize inactive's slide's style?
trafficstars
I want to be able to change the styles of the slides whose not the focused one, can this be done? Basically I want to set the opacity to the slides..
I tried styling via CSS. If the current slide is styled as ".current", just use a css selector for the inactive slides, like div:not(.current
#my-carousel-id div:not(.current) { /*Customizations here */ filter: blur(3px); }