Advertisement
voltairenism

main js stackoverflow

Jun 28th, 2021
1,260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery.noConflict();
  2.     (function( $ ) {
  3.         $(document).ready(function() {
  4.     "use strict";
  5.    
  6. /*--
  7.     Sliders
  8. -----------------------------------*/
  9. // Hero Slider
  10. $('.hero-slider').slick({
  11.     infinite: true,
  12.     fade: true,
  13.     dots: false,
  14.     prevArrow: '<button class="slick-prev"><i class="fa fa-angle-left"></i></button>',
  15.     nextArrow: '<button class="slick-next"><i class="fa fa-angle-right"></i></button>',
  16.     responsive: [
  17.         {
  18.         breakpoint: 992,
  19.             settings: {
  20.                 dots: true,
  21.                 arrows: false,
  22.             }
  23.         },
  24.     ]
  25. });
  26.  
  27.    
  28.    
  29. });
  30. });(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement