Server IP : 162.214.80.37 / Your IP : 216.73.216.83 Web Server : Apache System : Linux sh013.webhostingservices.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : imyrqtmy ( 2189) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home2/imyrqtmy/public_html/harishtaraagriculturaltrust/js/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
/*************************************************************************************************************** |||||||||||||||||||||||||||| CUSTOM SCRIPT FOR CHARITY HOME |||||||||||||||||||||||||||||||||||| **************************************************************************************************************** |||||||||||||||||||||||||||| TABLE OF CONTENT |||||||||||||||||||||||||||||||||||| **************************************************************************************************************** **************************************************************************************************************** 1 revolutionSliderActiver 2 galleryMasonaryLayout 3 LightBox / Fancybox 4 Gallery Filters 5 accrodion 6 pieChart RoundCircle 7 progressBarConfig 8 teamCarosule 9 testiCarosule 10 clientsCarosule 11 CounterNumberChanger 12 stickyHeader 13 contactFormValidation 14 event slider 15 selectInput 16 datePicker 17 gMap 18 mobileMenu **************************************************************************************************************** |||||||||||||||||||||||||||| End TABLE OF CONTENT |||||||||||||||||||||||||||||||||||| ****************************************************************************************************************/ "use strict"; // 1 revolutionSliderActiver function revolutionSliderActiver () { if ($('.rev_slider_wrapper #slider1').length) { $("#slider1").revolution({ sliderType:"standard", sliderLayout:"auto", delay:5000, navigation: { arrows:{enable:true} }, gridwidth:1170, gridheight:770 }); }; } // 2 galleryMasonaryLayout function galleryMasonaryLayout () { if ($('.img-masonary').length) { $('.img-masonary').isotope({ layoutMode:'masonry' }); } } // 3 LightBox / Fancybox if($('.lightbox-image').length) { $('.lightbox-image').fancybox({ openEffect : 'elastic', closeEffect : 'elastic', helpers : { media : {} } }); } // 4 Gallery Filters if($('.filter-list').length){ $('.filter-list').mixItUp({}); } // 5 accrodion function accrodion () { if ($('.accrodion-grp').length) { $('.accrodion-grp').each(function () { var accrodionName = $(this).data('grp-name'); var Self = $(this); Self.addClass(accrodionName); Self.find('.accrodion .accrodion-content').hide(); Self.find('.accrodion.active').find('.accrodion-content').show(); Self.find('.accrodion').each(function() { $(this).find('.accrodion-title').on('click', function () { if ($(this).parent().hasClass('active') === false ) { $('.accrodion-grp.'+accrodionName).find('.accrodion').removeClass('active'); $('.accrodion-grp.'+accrodionName).find('.accrodion').find('.accrodion-content').slideUp(); $(this).parent().addClass('active'); $(this).parent().find('.accrodion-content').slideDown(); }; }); }); }); }; } // 6 pieChart RoundCircle function expertizeRoundCircle () { var rounderContainer = $('.piechart.style-one'); if (rounderContainer.length) { rounderContainer.each(function () { var Self = $(this); var value = Self.data('value'); var size = Self.parent().width(); var color = Self.data('fg-color'); Self.find('span').each(function () { var expertCount = $(this); expertCount.appear(function () { expertCount.countTo({ from: 1, to: value*100, speed: 3000 }); }); }); Self.appear(function () { Self.circleProgress({ value: value, size: 142, thickness: 10, emptyFill: 'rgba(149,149,149,1)', animation: { duration: 3000 }, fill: { color: color } }); }); }); }; } // 7 progressBarConfig function progressBarConfig () { var progressBar = $('.progress'); if(progressBar.length) { progressBar.each(function () { var Self = $(this); Self.appear(function () { var progressValue = Self.data('value'); Self.find('.progress-bar').animate({ width:progressValue+'%' }, 100); Self.find('span.value').countTo({ from: 0, to: progressValue, speed: 100 }); }); }) } } // 8 teamCarosule function teamCarosule () { if ($('.team-carousel').length) { $('.team-carousel').owlCarousel({ loop: true, margin: 30, nav: true, dots: false, navText: [ '<i class="fa fa-angle-left"></i>', '<i class="fa fa-angle-right"></i>' ], autoplay: true, autoplayTimeout: 3000, autoplayHoverPause: true, responsive: { 0:{ items:1 }, 480:{ items:1 }, 600:{ items:2 }, 1000:{ items:3 }, 1200:{ items:4 } } }); } } // 9 testiCarosule function testiCarosule () { if ($('.testimonaials-carousel').length) { $('.testimonaials-carousel').owlCarousel({ loop: true, margin: 50, nav: false, dots: true, autoplay: true, autoplayTimeout: 3000, autoplayHoverPause: true, responsive: { 0:{ items:1 }, 480:{ items:1 }, 600:{ items:1 }, 1000:{ items:2 }, 1200:{ items:3 } } }); } } // 10 clientsCarosule function clientsCarosule () { if ($('.clients-carousel').length) { $('.clients-carousel').owlCarousel({ loop: true, margin: 50, nav: false, dots: false, autoplay: true, autoplayTimeout: 3000, autoplayHoverPause: true, responsive: { 0:{ items:2 }, 480:{ items:3 }, 600:{ items:4 }, 1000:{ items:5 }, 1200:{ items:6 } } }); } } // 11 CounterNumberChanger function CounterNumberChanger () { var timer = $('.timer'); if(timer.length) { timer.appear(function () { timer.countTo(); }) } } // 12 stickyHeader function stickyHeader () { if ($('.stricky').length) { var strickyScrollPos = 100; if($(window).scrollTop() > strickyScrollPos) { $('.stricky').removeClass('fadeIn animated'); $('.stricky').addClass('stricky-fixed fadeInDown animated'); } else if($(this).scrollTop() <= strickyScrollPos) { $('.stricky').removeClass('stricky-fixed fadeInDown animated'); $('.stricky').addClass('slideIn animated'); } }; } // 13 contactFormValidation function contactFormValidation () { if($('.contact-form').length){ $('.contact-form').each(function () { var cfName = $(this).attr('id'); $('#'+cfName).validate({ // initialize the plugin rules: { name: { required: true }, email: { required: true, email: true }, message: { required: true }, date: { required: true }, category: { required: true }, phone: { required: true }, gender: { required: true }, dateOfBirth: { required: true }, subject: { required: true } }, submitHandler: function (form) { // sending value with ajax request $.post($(form).attr('action'), $(form).serialize(), function (response) { $(form).parent('div').append(response); $(form).find('input[type="text"]').val(''); $(form).find('input[type="email"]').val(''); $(form).find('textarea').val(''); }); return false; } }); }); } } // 14 event slider function bxgeventCarousel () { $('.bx-event-carousel').bxSlider({ auto: false, speed: 300, mode: 'vertical', minSlides: 3, slideMargin: 20, pager: false, prevText: '<i class="fa fa-angle-left"></i>', nextText: '<i class="fa fa-angle-right"></i>' }); } // 15 selectInput function selectInput () { if ($('.select-input').length) { $('.select-input').selectmenu(); }; } // 16 datePicker function datePicker () { if ($('.date-picker').length) { $('.date-picker').datepicker(); }; } // 17 gMap function gMap () { if ($('.google-map').length) { $('.google-map').each(function () { // getting options from html var mapName = $(this).attr('id'); var mapLat = $(this).data('map-lat'); var mapLng = $(this).data('map-lng'); var iconPath = $(this).data('icon-path'); var mapZoom = $(this).data('map-zoom'); var mapTitle = $(this).data('map-title'); // if zoom not defined the zoom value will be 15; if (!mapZoom) { var mapZoom = 15; }; // init map var map; map = new GMaps({ div: '#'+mapName, scrollwheel: false, lat: mapLat, lng: mapLng, zoom: mapZoom }); // if icon path setted then show marker if(iconPath) { map.addMarker({ icon: iconPath, lat: mapLat, lng: mapLng, title: mapTitle }); } }); }; } // 18 mobileMenu function mobileMenu () { if ($('.navigation .nav-footer button').length && $(window).width() <= 768 ) { $('.navigation .nav-footer button').on('click', function () { $('.navigation .nav-header').slideToggle(); $('.navigation .nav-header').find('.dropdown').children('a').append(function () { return '<button><i class="fa fa-bars"></i></button>'; }); $('.navigation .nav-header .dropdown a button').on('click', function () { $(this).parent().parent().children('ul.submenu').slideToggle(); return false; }); }); }; } // Dom Ready Function jQuery(document).on('ready', function () { (function ($) { // add your functions revolutionSliderActiver(); galleryMasonaryLayout(); accrodion(); expertizeRoundCircle(); progressBarConfig(); teamCarosule(); testiCarosule(); clientsCarosule(); CounterNumberChanger(); contactFormValidation(); bxgeventCarousel(); selectInput(); datePicker(); gMap(); mobileMenu(); })(jQuery); }); // window on load functino jQuery(window).on('load', function () { (function ($) { // add your functions })(jQuery); }); // window on scroll functino jQuery(window).on('scroll', function () { (function ($) { // add your functions stickyHeader(); })(jQuery); });