$(document).ready(function(){ $('.gallery').Chocolat({ imageSelector: 'a.fancybox' }); $('.section-gallery ').Chocolat({ imageSelector: '.item .gal' }); // Scroll button /*$('a[href*="#"]').click(function(e) { e.preventDefault(); var _trg = $( $(this).attr("href") ); if ( _trg.length ) { pTop = _trg.offset().top; } else { pTop = $('a[name=' + $(this).attr("href").replace("#", "") +']').offset().top } if(_trg){ $('body,html').animate({ scrollTop: pTop }, 700); } }); */ $('.btnslide').click(function(e){ e.preventDefault(); var _ob = $(this).attr("href").replace("#", ""); var _pos = $('a[name=' + _ob + ']').offset().top - 100; $('html, body').stop().animate({ scrollTop: _pos }, 750); }); var startSlider = $('.start-slider').owlCarousel({ items: 1, autoplayHoverPause: true, autoplay: true, autoplayTimeout: 3200, animateIn: "fadeIn", animateOut: "fadeOut", loop: true, dots:true, drag: false }).addClass("owl-carousel"); var bigIconsCarousel = $('.big-icons-carousel').owlCarousel({ items: 4, autoplay: true, autoplayTimeout: 4000, autoplayHoverPause: false, loop: true, responsive: { 0: { items: 1 }, 720: { items: 2 }, 1024: { items: 3 }, 1280: { items: 4 }, 1440: { items: 5 } } }).addClass("owl-carousel") $('.accordion .acc-title').click(function(e){ $(this).parent().toggleClass("active"); }); $('.section-references .carousel').owlCarousel({ items: 1, autoplayHoverPause: false, autoplay: true, autoplayTimeout: 5000, dots: true }).addClass("owl-carousel"); $('.section-gallery-full .carousel').owlCarousel({ items: 5, autoplayHoverPause: true, autoplay: true, autoplayTimeout: 1500, dots: true, responsive: { 0: { items: 2 }, 800: { items: 3 }, 1000: { items: 4 }, 1200: { items: 5 }, 1500: { items: 6 } } }).addClass("owl-carousel"); $('.start-slider .button-other').click(function(e){ $('body,html').animate({ scrollTop: $('.section-start-navigation').offset().top }, 1000); }); $('.section-gallery-line .gallery4 .carousel').owlCarousel({ responsive: { 0: { items: 2 }, 700: { items: 3, margin: 0 }, 1200: { items: 4, margin:10 } }, autoplay: true, autoplayHoverPause: false, autoplayTimeout: 3000, dots: true, loop: true }).addClass("owl-carousel"); $('.section-gallery-line .gallery5 .carousel').owlCarousel({ responsive: { 0: { items: 2 }, 700: { items: 3, margin: 0 }, 1200: { items: 5, margin:10 } }, autoplay: true, autoplayHoverPause: false, autoplayTimeout: 3000, dots: true, loop: true }).addClass("owl-carousel"); $('.section-news .carousel').owlCarousel({ responsive: { 0: { items: 1 }, 700: { items: 2, margin: 10 }, 1200: { items: 4, margin:20 } }, autoplay: true, autoplayHoverPause: false, autoplayTimeout: 5000, dots: true, loop: true }).addClass("owl-carousel"); $('.offer-carousel').owlCarousel({ responsive: { 0: { items: 1 }, 700: { items: 2, margin: 10 }, 1200: { items: 4, margin:20 } }, autoplay: true, autoplayHoverPause: false, autoplayTimeout: 5000, dots: true, loop: true }).addClass("owl-carousel"); $('.menucall').click(function(e){ e.preventDefault(); if($('header nav').hasClass("on")) { $('body > div').unbind("click"); $('header nav').removeClass("on"); } else { $('header nav').addClass("on"); $('body > div').on("click", function(ev){ $('header nav').removeClass("on"); $(this).unbind("click"); }); } }); });