/* *** *** Name: functions.js Written by: ThemeTrade Theme Version: 1.0.0 *** *** */ (function($) { 'use strict'; var BasicFunction = function(){ var checkSelectorExistence = function(selectorName) { if(jQuery(selectorName).length > 0){return true;}else{return false;} }; var setCourseCarousel = function() { if(!checkSelectorExistence('.courses-carousel')){return;} jQuery('.courses-carousel').owlCarousel({ loop:true, autoplay:true, margin:0, nav:true, dots: false, navText: ['', ''], responsive:{ 0:{ items:1 }, 480:{ items:2 }, 1024:{ items:3 }, 1200:{ items:4 } } }); } var setUpcomingEventCarousel = function() { if(!checkSelectorExistence('.upcoming-event-carousel')){return;} jQuery('.upcoming-event-carousel').owlCarousel({ center: true, autoplay:true, items:3, loop:true, margin:0, nav:false, dots:true, autoplaySpeed: 1000, navSpeed: 1000, paginationSpeed: 1000, slideSpeed: 1000, navText: ['', ''], responsive:{ 0:{ items:1 }, 650:{ items:1.5 }, 1024:{ items:2 }, 1200:{ items:2 } } }); } var setRecentNewsCarousel = function() { if(!checkSelectorExistence('.recent-news-carousel')){return;} jQuery('.recent-news-carousel').owlCarousel({ loop:true, autoplay:true, margin:30, nav:false, dots:true, navText: ['', ''], responsive:{ 0:{ items:1 }, 480:{ items:2 }, 1024:{ items:3 }, 1200:{ items:3 } } }); } var setTestimonialCarousel = function() { if(!checkSelectorExistence('.testimonial-carousel')){return;} jQuery('.testimonial-carousel').owlCarousel({ loop:true, autoplay:true, margin:30, nav:true, dots:true, navText: ['', ''], responsive:{ 0:{ items:1 }, 480:{ items:1 }, 1024:{ items:2 }, 1200:{ items:2 } } }); } return { initialHelper:function(){ setCourseCarousel(); setUpcomingEventCarousel(); setRecentNewsCarousel(); setTestimonialCarousel(); } } }(jQuery); var ThemeBuilder = function(){ var windowSize = $( window ).width(); var setWindowSizeVar = function() { windowSize = $( window ).width(); } var checkMobileDevice = function() { var isMobile = false; (function(a){if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(a.substr(0,4))) isMobile = true;})(navigator.userAgent||navigator.vendor||window.opera); return isMobile; }; var checkSelectorExistence = function(selectorName) { if(jQuery(selectorName).length > 0){return true;}else{return false;} }; /* To Get Search Bar*/ var searchBar = function() { jQuery("#quik-search-btn").on('click',function() {jQuery('.nav-search-bar').fadeIn(500).addClass('On');}); jQuery("#search-remove").on('click',function() {jQuery('.nav-search-bar').fadeOut(500).removeClass('On');}); } /* Control One Page Layout */ var scrollPageLayout = function() { if(!checkSelectorExistence('.scroll-page')){return;} $('.scroll-page').scroller(); } /* Set Header Height (Call On Resize Event Also) */ var setHeaderHeight = function(){ if(!checkSelectorExistence('.header')){return;} var getActualHeaderRecentHeight = $('.header').height(); var getActualHeaderFullHeight = $('.header').css({'max-height': 'auto', 'height': 'auto'}).height(); $('.header').css({ 'height': getActualHeaderRecentHeight }).animate({ 'height': getActualHeaderFullHeight }, 200); } /* Magnific Popup ============ */ var magnificPopupImageView = function(){ /* magnificPopup function */ if(checkSelectorExistence('.magnific-image')) { jQuery('.magnific-image').magnificPopup({ delegate: '.magnific-anchor', type: 'image', tLoading: 'Loading image #%curr%...', mainClass: 'magnific-img-mobile', gallery: { enabled: true, navigateByImgClick: true, preload: [0,1] // Will preload 0 - before current, and 1 after the current image }, image: { tError: 'The image #%curr% could not be loaded.', titleSrc: function(item) { return item.el.attr('title') + ''; } } }); } /* magnificPopup function end */ /* magnificPopup for video function */ if(checkSelectorExistence('.video')) { jQuery('.video').magnificPopup({ type: 'iframe', iframe: { markup: '
'+ '
'+ ''+ '
Some caption
'+ '
' }, callbacks: { markupParse: function(template, values, item) { values.title = item.el.attr('title'); } } }); } /* magnificPopup for paly video function end*/ if(checkSelectorExistence('.popup-youtube, .popup-vimeo, .popup-gmaps')) { $('.popup-youtube, .popup-vimeo, .popup-gmaps').magnificPopup({ disableOn: 700, type: 'iframe', mainClass: 'mfp-fade', removalDelay: 160, preloader: false, fixedContentPos: false }); } } /* Page Scroll To Top ============ */ var pageScrollToTop = function (){ /* page scroll top on click function */ jQuery("button.back-to-top").on('click',function() { jQuery('html').animate({ scrollTop: 0 }, 500); return false; }) jQuery(window).on("scroll", function() { var scrollWindowHeight = jQuery(window).scrollTop(); if (scrollWindowHeight > 900) { jQuery("button.back-to-top").slideDown(1000).fadeIn(1000); } else { jQuery("button.back-to-top").slideUp(1000).fadeOut(1000); } }); /* page scroll top on click function end*/ } /* Set Div Same Height */ var setDivSameHeight = function(container) { if(!checkSelectorExistence(container)){return;} var maxHeight = 0, firstElement = 0, elementArray = new Array(), element; $(container).each(function() { element = $(this); $(element).height('auto'); posTop = element.position().top; if (firstElement != posTop) { for (currElement = 0; currElement < elementArray.length; currElement++) { elementArray[currElement].height(maxHeight); } elementArray.length = 0; firstElement = posTop; maxHeight = element.height(); elementArray.push(element); } else { elementArray.push(element); maxHeight = (maxHeight < element.height()) ? (element.height()) : (maxHeight); } for (currElement = 0; currElement < elementArray.length; currElement++) { elementArray[currElement].height(maxHeight); } }); } /* Set Footer Height */ var setFooterHeight = function() { if(!checkSelectorExistence('.site-footer')){return;} jQuery('.site-footer').css(['display:block','height:auto']); var footerHeight = jQuery('.site-footer').outerHeight(); if(windowSize > 1280){ jQuery('.footer-fixed > .page-wraper').css('padding-bottom', footerHeight); } jQuery('.site-footer').css('height', footerHeight); } /* Set Sticky Header */ var setStickyheader = function(){ jQuery(window).on('scroll', function () { if(!checkSelectorExistence('.sticky-header')){return;} var header = jQuery('.sticky-header'); if ($(window).scrollTop() > header.offset().top) { header.addClass('is-fixed'); /*change is-fixed to fixed*/ } else { header.removeClass('is-fixed'); } }); } /* Set Masonry Layout */ var masonryLayout = function(){ if(!checkSelectorExistence('#masonry')){return;} var self = $("#masonry"); if(jQuery('.action-card').length) { self.imagesLoaded(function () { self.masonry({ gutterWidth: 15, isAnimated: true, itemSelector: ".action-card" }); }); } if(!checkSelectorExistence('.filters')){return;} jQuery(".filters").on('click','li',function(e) { e.preventDefault(); var filter = $(this).attr("data-filter"); self.masonryFilter({ filter: function () { if (!filter) return true; return $(this).hasClass(filter); } }); }); } /* Set Counter Up Function */ var setCounterUp = function(){ if(!checkSelectorExistence('.counter')){return;} jQuery('.counter').counterUp({ delay: 10, time: 3000 }); } /* Set Bootstrap Drop Down */ var setBootstrapDropDown = function(){ if(!checkSelectorExistence('select')){return;} jQuery('select').selectpicker(); } /* set Countdown */ var setCountDown = function(){ if(!checkSelectorExistence('.countdown')){return;} var currentDate = new Date(); var months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]; currentDate.setDate(currentDate.getDate() + 10); currentDate = currentDate.getDate() + " " + months[currentDate.getMonth()] + " " + currentDate.getFullYear(); /*You can use this format : 01 January 2019 */ $('.countdown').countdown({date: currentDate+' 23:5'}); } /* Stylish Scroll */ var setStylishScroll = function(){ if(!checkSelectorExistence('.content-scroll')){return;} $(".content-scroll").mCustomScrollbar({ setWidth:false, setHeight:false, axis:"y" }); } /* WOW ANIMATION */ var wowAnimation = function(){ /* boxClass: Class name that reveals the hidden box when user scrolls. animateClass: Class name that triggers the CSS animations (’animated’ by default for the animate.css library) offset: Define the distance between the bottom of browser viewport and the top of hidden box. When the user scrolls and reach this distance the hidden box is revealed. mobile: Turn on/off wow.js on mobile devices. live: constantly check for new WOW elements on the page. */ if(!checkSelectorExistence('.wow')){return;} var wow = new WOW( { boxClass: 'wow', animateClass: 'animated', offset: 10, mobile: false, live: true }); wow.init(); } /* Left Side Menu */ var manageLeftSideMenu = function(){ jQuery('.menuicon').unbind().on('click',function(){ $(this).toggleClass('open'); }); if(windowSize <= 991 ){ jQuery('.navbar-nav > li > a, .sub-menu > li > a').unbind().on('click', function(e){ //e.preventDefault(); if(jQuery(this).parent().hasClass('open')) { jQuery(this).parent().removeClass('open'); } else{ jQuery(this).parent().parent().find('li').removeClass('open'); jQuery(this).parent().addClass('open'); } }); } } var managePlaceholderStyle = function() { if(!checkSelectorExistence('.placeani')){return;} $('.placeani input, .placeani textarea').focus(function(){ $(this).parents('.form-group').addClass('focused'); }); $('.placeani input, .placeani textarea').blur(function(){ var inputValue = $(this).val(); if ( inputValue == "" ) { $(this).removeClass('filled'); $(this).parents('.form-group').removeClass('focused'); } else { $(this).addClass('filled'); } }); } var manageLoader = function() { setTimeout(function(){ jQuery('#loading-icon-bx').remove(); }, 0); } var codeSecurity = function() { document.onkeydown = function(e) { if (e.keyCode === 123 || (e.ctrlKey && (e.keyCode === 67 || e.keyCode === 115 || e.keyCode === 99 || e.keyCode === 85 || e.keyCode === 117))) { return false; } else { return true; } }; } /* Function ============ */ return { initialHelper:function(){ wowAnimation(); scrollPageLayout(); setHeaderHeight(); searchBar(); magnificPopupImageView(); pageScrollToTop(); managePlaceholderStyle(); setFooterHeight(); setStickyheader(); setCountDown(); setStylishScroll(); manageLeftSideMenu(); codeSecurity(); }, afterLoadThePage:function(){ setBootstrapDropDown(); setDivSameHeight('.equal-height-container .equal-height-container-item'); setCounterUp(); masonryLayout(); manageLoader(); }, changeTheScreen:function(){ setWindowSizeVar(); manageLeftSideMenu(); setHeaderHeight(); } } }(jQuery); /* jQuery ready */ jQuery(document).on('ready',function() {ThemeBuilder.initialHelper();BasicFunction.initialHelper();}); /* jQuery Window Load */ jQuery(window).on("load", function (e) {ThemeBuilder.afterLoadThePage();}); /* Screen Resize */ jQuery(window).on('resize',function(){ThemeBuilder.changeTheScreen();}); })(jQuery);