Welcome to mirror list, hosted at ThFree Co, Russian Federation.

initOwlCarousel.js « js « assets - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fad5b64d630a4bfb31ebe959270ccf2bfabc3b45 (plain)
1
2
3
4
5
6
7
8
9
$(document).ready(function(){
  $(".owl-carousel").owlCarousel({
      loop: true,
      nav: true,
      margin: 10,
      items: 1,
      autoHeight: true
  });
});