I use carouFredSel to create a vertical carousel. Everything works fine, except that I prefer that partial objects appear below, clipped rather than hidden. Thus, this indicates to users that there are additional elements that can be scrolled.
I read the documentation , but I still canβt say if itβs possible that I am behind it.
Take a look at JSFiddle to see what I mean . See the bottommost item on the page.
Javascript
$("ul").carouFredSel({
direction: "up",
align: "top",
width: 100,
height: "100%",
items: {
visible: "variable",
width: 100,
height: "variable"
},
scroll: {
items: 1,
mousewheel: true,
easing: "swing",
duration: 500
},
auto: false,
prev: {
button: ".prev",
key: "up"
},
next: {
button: ".next",
key: "down"
}
});β
source
share