JQuery Slider For Displaying Products Image Carousel With Blurred Background

The sliding product is a smooth lightweight slider for displaying products and an automatic slideshow plugin that blurs the current image and uses it as the background of the corresponding slide.

responsive image slider with text, bootstrap carousel slider with thumbnails, responsive slider jquery free download with demo, jquery product slider

How to make use of it:

1. Load jQuery library and different required assets within the doc.

<!-- OPTIONAL -->
<link rel="stylesheet" href="/path/to/cdn/bootstrap.min.css" />
<!-- jQuery (REQUIRED) -->
<script src="/path/to/cdn/jquery.min.js"></script>
<!-- jQuery (REQUIRED) -->
<script src="/path/to/cdn/jquery-ui.min.js"></script>
<!-- Plugin Files -->
<link rel="stylesheet" href="product-slider/product-slider.min.css" />
<script src="product-slider/product-slider.min.js"></script>

2. The primary markup for the carousel.

<div id="mySlider">
  <div>
    <img src="1.jpg" />
  </div>
  <div>
    <img src="2.png" />
  </div>
  <div>
    <img src="3.jpg" />
  </div>
</div>

3. Initialize the plugin and achieved.

$(function(){
  $('#mySlider').productSlider();
});

4. add descriptions to the images if needed.

<div id="mySlider">
  <div>
    <a class="content" href="#">
      <img src="1.jpg" />
    </a>
    <span class="description">
      <a href="#">
        Caption 1
      </a>
    </span>
  </div>
  <div>
    <a class="content" href="#">
      <img src="2.jpg" />
    </a>
    <span class="description">
      <a href="#">
        Caption 2
      </a>
    </span>
  </div>
  <div>
    <a class="content" href="#">
      <img src="3.jpg" />
    </a>
    <span class="description">
      <a href="#">
        Caption 3
      </a>
    </span>
  </div>
</div>

5. Initialize the plugin and achieved.

$(function(){
  $('#mySlider').productSlider();
});

6. Customize the carousel by overring the default choices as proven under.

$('#my-slider').productSlider({

  // height of background images
  previewHeight: 450,

  // image height
  slideWidth: 300,
  
  // height of thumbnail images
  navbarHeight: 150,  // [px]
  
  // transition speed
  animationTime: 400,

  // autoplay interval
  autoplay: 3000,

  // pause on hover
  stopOnMouseHover: true,

  // time to wait before transitioning to the next image on click
  delayOnClick: 2000,

  // z-index
  zIndex: 10,
  
})

7. Events.

$('#my-slider').productSlider({

  onNavChanged: (event, payload) => {
    const { before, current } = payload
    console.info(`The shown product changed from ${before.id} to ${current.id}`)
  },

  onInitialized: (event) => {
    // on init
  },
  
})

Image Carousel With Blurred Background, product slider Plugin/Github, bootstrap responsive slider free download, jquery image slider, slick slider, jquery carousel slider example


See Demo And Download

Official Website(Chaoste): Click Here

This superior jQuery/javascript plugin is developed by Chaoste. For extra Advanced Usages, please go to the official website.

Related Posts

Iconpicker-Bootstrap-5

[Icon Picker] Iconpicker for Bootstrap 5 Icons Library

Bootstrap 5-based icon picker which supports any icon libraries like Bootstrap Icons, Font Awesome[fontawesome.com], etc. Must Read: 1000+ Pixel Perfect SVG Icons For Vue Components | Unicons How…

bootstrap-multiple-image-upload-with-preview

Bootstrap Multiple Image Upload with Preview and Delete | ImagesLoader

ImagesLoader is a standard bootstrap image upload plugin that provides an easy-to-use and nice-looking interface for uploading multiple images to a web server. Must Read: HTML 5…

Animating-Split-Flap-Displays-fallblatt

A Lightweight jQuery Plugin for Animating Split-Flap Displays | fallblatt

fallblatt is a lightweight jQuery plugin for animating split screens. This jQuery plugin allows you to include such offers in your web application. Everything from virtual departure…

bootstrap-5-dark-theme

Dark & Light Switch Mode Toggle for Bootstrap 5

Switching to dark mode is done by toggling HTML tags that include -dark or -light as a category. It is made by manipulating the DOM with JavaScript. The text color also changes depending…

jQuery-SyoTimer-Plugin

jQuery Plugin for Countdown Timer on HTML Page | SyoTimer

yoTimer jQuery plugin allows you to create digital style countdowns/periodic timers on the webpage, with callbacks support and timezone/translation customization. Features Periodic count with the specified period…

vue-js-periodic-table

Dynamic, Data-driven Periodic Table built with Vue.js

Periodicity is a dynamic, data-driven periodic table created with Vue.js that uses D3 animations and graphs to show the beauty of periodic trends. Built With vue.js (component…