SuperSlider Masterpiece Demo

1. Image Slider

This is a standard image slider with autoplay, loop, arrows, pagination, and centered mode enabled.

Previous
Next
Mountain Landscape 4K
Lake Reflection 4K
Forest Fog 4K
Aurora Borealis 4K
Waterfall 4K
Misty Forest 4K
Mountain Range 4K
Beach Sunset 4K
Autumn Path 4K
Desert Dunes 4K
Tropical Beach 4K
JS Initialization:
new SuperSlider("#imageSlider", {
    autoplay:true,
    speed:2500,
    loop:true,
    slidesPerView:{mobile:1, tablet:2, desktop:3},
    spaceBetween:{mobile:10, tablet:15, desktop:20},
    arrows:true,
    centered:true,
    freeMode:true
});
    

2. Box Slider

This slider uses HTML boxes instead of images. Shows that SuperSlider works with any HTML content.

1
2
3
4
JS Initialization:
new SuperSlider("#boxSlider", {
    autoplay:true,
    speed:4000,
    loop:true,
    slidesPerView:{mobile:1, tablet:2, desktop:3},
    spaceBetween:{mobile:10, tablet:15, desktop:20},
    arrows:true,
    centered:false,
    freeMode:true
});
    

3. Markup Structure

Basic HTML structure required for SuperSlider:

<div class="super-slider" id="sliderID">
    <div class="super-slider-wrapper">
        <div class="super-slide">Your Content</div>
        <div class="super-slide">Your Content</div>
    </div>
    <div class="super-slider-pagination"></div>
    <div class="super-slider-arrows"></div>
</div>
    

Notes: