$(window).on('resize', function(){ var win = $(this); //this = window if (win.width() >= 976) { $('.togggle_menu').removeClass("active"); } }); // $(document).ready(function(){ // $(window).scroll(function(){ // if ($(this).scrollTop() > 38) { // $("nav").addClass("sticky"); // $(".logo img").css("height", "50px"); // $("nav a").css("padding", "25px 0"); // $("nav ul ul").css("top", "68px"); // $("nav ul ul ul").css("top", "88px"); // } else { // $("nav").removeClass("sticky"); // $(".logo img").css("height", "70px"); // $("nav a").css("padding", "35px 0"); // $("nav ul ul").css("top", "88px"); // } // }); // }); $('.togggle_menu').on('click', function() { $(this).toggleClass("active"); $('.menu').slideToggle('fast'); $("html, body").animate({ scrollTop: 40 }, "fast"); $("nav").toggleClass("openMenu"); }); $('.mobieldrop_2').on('click', function() { $(this).parents("li").children("ul.level2_menu").toggle(); }); $('.mobieldrop_3').on('click', function() { $(this).parents("li").children("ul.level3_menu").toggle(); }); $('.slider_container').slick({ dots: false, infinite: true, speed: 1200, slidesToScroll: 1, autoplay: true, autoplaySpeed: 3000, pauseOnHover:false }); // video slider $(document).ready(function() { $('#image-gallery').lightSlider({ gallery: true, item: 1, thumbItem: 5, slideMargin: 0, speed: 500, auto: false, loop: true, responsive: [{ breakpoint: 991, settings: { thumbItem: 5, } }, { breakpoint: 767, settings: { thumbItem: 5, } }, { breakpoint: 500, settings: { thumbItem: 4 } }], onSliderLoad: function() { $('#image-gallery').removeClass('cS-hidden'); } }); }); $('#play-01').on('click', function() { $(this).fadeOut(); $("#video_player-01")[0].play(); }); $('#play-02').on('click', function() { $(this).fadeOut(); $("#video_player-02")[0].play(); }); $('#play-03').on('click', function() { $(this).fadeOut(); $("#video_player-03")[0].play(); }); // video par $("#videoReadMore_01").click(function(){ $(".description_p").css({"max-height": "none"}); $(".description").css({"overflow": "visible"}); $(this).hide(); }); // scroll top $(document).ready(function(){ //Check to see if the window is top if not then display button $(window).scroll(function(){ if ($(this).scrollTop() > 50) { $('.scrollToTop').fadeIn(); } else { $('.scrollToTop').fadeOut(); } }); //Click event to scroll to top $('.scrollToTop').click(function(){ $('html, body').animate({scrollTop : 0},500); return false; }); }); // calendar view $('#event_listview').hide(); $('#calendar_btn').on('click', function() { $('.viewas button').removeClass('active'); $(this).addClass('active'); $('#event_listview').hide(); $('#event_calendar').fadeIn('fast'); }); $('#viewlist_btn').on('click', function() { $('.viewas button').removeClass('active'); $(this).addClass('active'); $('#event_calendar').hide(); $('#event_listview').fadeIn('fast'); }); $(window).load(function() { var viewportWidth = $(window).innerWidth(); if (viewportWidth < 1000) { $('#event_calendar').hide(); $('#event_listview').fadeIn('fast'); } else{ $('#event_listview').hide(); $('#event_calendar').fadeIn('fast'); } }); $(window).resize(function() { var viewportWidth = $(window).innerWidth(); if (viewportWidth < 1000) { $(".TopHeading").addClass("fixed_heading"); $( "#viewlist_btn" ).trigger('click'); } }); $(window).resize(function() { var viewportWidth = $(window).innerWidth(); if (viewportWidth > 1000) { $(".TopHeading").removeClass("fixed_heading"); $( "#calendar_btn" ).trigger('click'); } }); // lcif $('.lcif_title h3').on("click", function (event) { $('.arrow-img').removeClass('rotate').addClass('rotate-reset'); $(this).parents(".lcif_title").children(".arrow-img").toggleClass('rotate'); $(this).parents(".lcif_title").children(".arrow-img").toggleClass('rotate-reset'); $('.lcif_title').removeClass('active'); $(this).parents(".lcif_title").addClass('active'); $('.lcif_table').hide(); $(this).parents(".lcif").children(".lcif_table").slideDown('fast'); $('html, body').animate({ scrollTop: ($(this).offset().top - 90) },500); }); $('.updown_title h3').on("click", function (event) { $('.arrow-img').removeClass('rotate').addClass('rotate-reset'); $(this).parents(".updown_title").children(".arrow-img").toggleClass('rotate'); $(this).parents(".updown_title").children(".arrow-img").toggleClass('rotate-reset'); $('.updown_title').removeClass('active'); $(this).parents(".updown_title").addClass('active'); $('.updownContainer').hide(); $(this).parents(".updown").children(".updownContainer").slideDown('fast'); $('html, body').animate({ scrollTop: ($(this).offset().top - 90) },500); }); // club list $('#club_list').hide(); $('#club_list_btn').on('click', function() { $('.tabOption button').removeClass('active'); $(this).addClass('active'); $('#club_tree').hide(); $('#club_list').fadeIn(); }); $('#club_tree_btn').on('click', function() { $('.tabOption button').removeClass('active'); $(this).addClass('active'); $('#club_tree').fadeIn(); $('#club_list').hide(); }); // cabinet $('#cabinet_list').hide(); $('#cabinet_list_btn').on('click', function() { $('.tabOption button').removeClass('active'); $(this).addClass('active'); $('#cabinet_pic').hide(); $('#cabinet_list').fadeIn(); }); $('#cabinet_btn').on('click', function() { $('.tabOption button').removeClass('active'); $(this).addClass('active'); $('#cabinet_pic').fadeIn(); $('#cabinet_list').hide(); }); // side nav (function() { var bodyEl = $('body'), navToggleBtn = bodyEl.find('.nav-toggle-btn,.closesidenav'); navToggleBtn.on('click', function(e) { bodyEl.toggleClass('active-nav'); e.preventDefault(); }); })();