Slider

Slider with navigation


A Variety of Layouts

you can use any layout to customize your website

Buy this template

Create Your Website

With Novi Builder powerful multipurpose template

Buy this template

Fully Responsive Template

with lots of improvements and new features

Buy this template
Prev
Next

Swiper supports 'Prev'/'Next' buttons display for managing slider display. To display these buttons, please add the following marking to the target slider:

<div class="swiper-container swiper-slider">
  <!-- Slider Navigation -->
  <div class="swiper-button-prev"></div>
  <div class="swiper-button-next"></div>
</div>

Slider with pagination


Create Your Website

With Novi Builder powerful multipurpose template

Buy this template

A Variety of Layouts

you can use any layout to customize your website

Buy this template

Fully Responsive Template

with lots of improvements and new features

Buy this template

Swiper supports slider pagination display. To display pagination, please add the following marking to the target slider:

<div class="swiper-container swiper-slider">
    <!-- Slider Pagination -->
    <div class="swiper-pagination"></div>
</div>

Vertical Slider with pagination


Create Your Website

With Novi Builder powerful multipurpose template

Buy this template

A Variety of Layouts

you can use any layout to customize your website

Buy this template

Fully Responsive Template

with lots of improvements and new features

Buy this template

In Swiper slider, you can change slides switching direction from horizontal to vertical. To do this, use the 'data-direction' ("horizontal"/"vertical", by default "horizontal") for the target element with the .swiper-slider class.

<div class="swiper-container swiper-slider" data-direction="vertical">
   ...
</div>

Slider with progress pagination


Create Your Website

With Novi Builder powerful multipurpose template

Buy this template

A Variety of Layouts

you can use any layout to customize your website

Buy this template

Fully Responsive Template

with lots of improvements and new features

Buy this template
Prev
Next

To add progress pagination in slider use the data-pagination-type='progress' :

<div class="swiper-container swiper-slider" data-pagination-type='progress'>
   ...
</div>

Slider with Ken Burns effect


Create Your Website

With Novi Builder powerful multipurpose template

Buy this template

A Variety of Layouts

you can use any layout to customize your website

Buy this template

Fully Responsive Template

with lots of improvements and new features

Buy this template
Prev
Next

Basic markup for slider with Ken Burns effect:

<div class="swiper-container swiper-slider swiper-scale-effect"> 
  <div class="swiper-wrapper">
    <div class="swiper-slide" data-slide-bg="images/image-slide">
      <div class="swiper-slide-cover" style="background: url(images/image-slide) center; background-size: cover;"></div>
      ...
    </div>
  </div>
</div>