widget-blog.js 396 B

1234567891011121314151617181920212223242526272829
  1. //[widget charts Javascript]
  2. $(function () {
  3. "use strict";
  4. $('.owl-carousel').owlCarousel({
  5. loop: true,
  6. margin: 10,
  7. responsiveClass: true,
  8. autoplay: true,
  9. responsive: {
  10. 0: {
  11. items: 1,
  12. nav: false
  13. },
  14. 600: {
  15. items: 3,
  16. nav: false
  17. },
  18. 1000: {
  19. items: 4,
  20. nav: false,
  21. margin: 20
  22. }
  23. }
  24. });
  25. }); // End of use strict