Film Roll: Full ScreenFull Height | Vertically Centered
To configure FilmRoll as a full screen carousel where content fills the height of the browser, do the following:
#film_roll, div.film_roll_child {
height: 100%;
}
div.film_roll_child img {
height: 100%;
max-width: none;
max-height: 100%;
}
div.film_roll_wrapper { overflow-x: hidden; }
This code assumes you have images inside child divs.
div.film_roll_children {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
var film_roll = new FilmRoll({
container: '#film_roll',
});
.film_roll_pager {
position: relative;
top: -20px;
}