Navigation : Bootstrap Nav Templates Bootstrap Carousel Templates - Carousel Fade Bootstrap - Fixed Caption Carousel - Fullscreen Carousel - Premium Carousel Bootstrap Gallery with Tabs Bootstrap Vertical Tabs&Pils Fullscreen Carousel THIS IS CAPTION TITLE SUBTITLE FOR THIS CAPTION Previous Next HTML CSS JavaScript THIS IS CAPTION TITLE SUBTITLE FOR THIS CAPTION Previous Next COPY CODE .full-screen { background-size: cover; background-position: center; background-repeat: no-repeat;} COPY CODE var $item = $( ‘.carousel-item’ ); var $wHeight = $( window ).height(); $item.eq( 0 ).addClass( ‘active’ ); $item.height( $wHeight ); $item.addClass( ‘full-screen’ ); $( ‘.carousel img’ ).each( function () { var $src = $( this ).attr( ‘src’ ); var $color = $( this ).attr( ‘data-color’ ); $( this ).parent().css( { ‘background-image’: ‘url(’ + $src + ‘)’, ‘background-color’: $color } ); $( this ).remove(); } ); $( window ).on( ‘resize’, function () { $wHeight = $( window ).height(); $item.height( $wHeight ); } ); $( ‘.carousel’ ).carousel( { interval: 7000, pause: “false”} ); COPY CODE