Server IP : 162.214.80.37 / Your IP : 216.73.216.173 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/skyispatudyog/sym/Users/0-imyrqtmy/survey/js/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
/** ========================================================================================== Project : C & G Survey Technical Services - Responsive Multi-purpose HTML5 Template Author : Themetechmount Version : Bootstrap 5.3.3 ========================================================================================== */ /** =============== .. Preloader .. header_search .. Fixed-header .. Menu .. Number rotator .. Skillbar .. Tab .. Accordion .. Isotope .. Prettyphoto .. Slick_slider .. Back to top .. margin padding =============== */ jQuery(function($) { "use strict"; /*------------------------------------------------------------------------------*/ /* Preloader /*------------------------------------------------------------------------------*/ // makes sure the whole site is loaded $(window).on("load",function(){ $(".loader-blob").fadeOut(),$("#preloader").delay(300).fadeOut("slow",function(){$(this).remove()}) }) /*------------------------------------------------------------------------------*/ /* header_search /*------------------------------------------------------------------------------*/ $(".header_search").each(function(){ $(".search_btn", this).on("click", function(e){ e.preventDefault(); e.stopPropagation(); $(".header_search_content").toggleClass("on"); if ($('.header_search a').hasClass('open')) { $( ".header_search a i" ).removeClass('ti-close').addClass('ti-search'); $(this).removeClass('open').addClass('sclose'); } else { $(".header_search a").removeClass('sclose').addClass('open'); $( ".header_search a i" ).removeClass('ti-search').addClass('ti-close'); } }); }); /*------------------------------------------------------------------------------*/ /* header_logo / Nav /*------------------------------------------------------------------------------*/ $(document).ready(function() { if ( matchMedia( 'only screen and (min-width: 1200px)' ).matches ) { $('.header.logo-change').find('img').attr({src:'./images/logo-light.svg'}); } }); jQuery(window).resize(function() { var retina = window.devicePixelRatio > 1 ? true : false; if ( matchMedia( 'only screen and (max-width: 1200px)' ).matches ) { $('.header.logo-change .site-branding').find('img').attr({src:'./images/logo-img.svg'}); } else { $('.header.logo-change .site-branding').find('img').attr({src:'./images/logo-light.svg'}); } }); /*------------------------------------------------------------------------------*/ /* Fixed-header /*------------------------------------------------------------------------------*/ $(window).scroll(function(){ if ( matchMedia( 'only screen and (min-width: 1200px)' ).matches ) { if ($(window).scrollTop() >= 50 ) { $('.ttm-stickable-header').addClass('fixed-header'); $('.header.logo-change .ttm-stickable-header').addClass('fixed-header').find('img').attr({src:'./images/logo-img.svg'});; } else { $('.ttm-stickable-header').removeClass('fixed-header'); $('.header.logo-change .ttm-stickable-header').removeClass('fixed-header').find('img').attr({src:'./images/logo-light.svg'});; } } }); /*------------------------------------------------------------------------------*/ /* Menu /*------------------------------------------------------------------------------*/ var menu = { initialize: function() { this.Menuhover(); }, Menuhover : function(){ var getNav = $("nav.main-menu"), getWindow = $(window).width(), getHeight = $(window).height(), getIn = getNav.find("ul.menu").data("in"), getOut = getNav.find("ul.menu").data("out"); if ( matchMedia( 'only screen and (max-width: 1200px)' ).matches ) { // Enable click event $("nav.main-menu ul.menu").each(function(){ // Dropdown Fade Toggle $("a.mega-menu-link", this).on('click', function (e) { e.preventDefault(); var t = $(this); t.toggleClass('active').next('ul').toggleClass('active'); }); // Megamenu style $(".megamenu-fw", this).each(function(){ $(".col-menu", this).each(function(){ $(".title", this).off("click"); $(".title", this).on("click", function(){ $(this).closest(".col-menu").find(".content").stop().toggleClass('active'); $(this).closest(".col-menu").toggleClass("active"); return false; e.preventDefault(); }); }); }); }); } }, }; $('.btn-show-menu-mobile').on('click', function(e){ $(this).toggleClass('is-active'); $('.menu-mobile').toggleClass('show'); return false; e.preventDefault(); }); // Initialize $(document).ready(function(){ menu.initialize(); }); var $bannerSlider = jQuery('.banner_slider'); var $bannerFirstSlide = $('div.slide:first-child'); $bannerSlider.on('init', function (e, slick) { var $firstAnimatingElements = $bannerFirstSlide.find('[data-animation]'); slideanimate($firstAnimatingElements); }); $bannerSlider.on('beforeChange', function (e, slick, currentSlide, nextSlide) { var $animatingElements = $('div.slick-slide[data-slick-index="' + nextSlide + '"]').find('[data-animation]'); slideanimate($animatingElements); }); $bannerSlider.slick({ slidesToShow: 1, slidesToScroll: 1, arrows: true, fade: true, dots: false, swipe: true, adaptiveHeight: true, responsive: [ { breakpoint: 1200, settings: { arrows: false } }, { breakpoint: 767, settings: { slidesToShow: 1, slidesToScroll: 1, arrows: false, autoplay: false, autoplaySpeed: 4000, swipe: true } }] }); function slideanimate(elements) { var animationEndEvents = 'webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend'; elements.each(function () { var $this = $(this); var $animationDelay = $this.data('delay'); var $animationType = 'animated ' + $this.data('animation'); $this.css({ 'animation-delay': $animationDelay, '-webkit-animation-delay': $animationDelay }); $this.addClass($animationType).one(animationEndEvents, function () { $this.removeClass($animationType); }); }); } /*------------------------------------------------------------------------------*/ /* Animation on scroll: Number rotator /*------------------------------------------------------------------------------*/ $("[data-appear-animation]").each(function() { var self = $(this); var animation = self.data("appear-animation"); var delay = (self.data("appear-animation-delay") ? self.data("appear-animation-delay") : 0); if( $(window).width() > 959 ) { self.html('0'); self.waypoint(function(direction) { if( !self.hasClass('completed') ){ var from = self.data('from'); var to = self.data('to'); var interval = self.data('interval'); self.numinate({ format: '%counter%', from: from, to: to, runningInterval: 2000, stepUnit: interval, onComplete: function(elem) { self.addClass('completed'); } }); } }, { offset:'85%' }); } else { if( animation == 'animateWidth' ) { self.css('width', self.data("width")); } } }); /*------------------------------------------------------------------------------*/ /* Skillbar /*------------------------------------------------------------------------------*/ $('.ttm-progress-bar').each(function() { $(this).find('.progress-bar').width(0); }); $('.ttm-progress-bar').each(function() { $(this).find('.progress-bar').animate({ width: $(this).attr('data-percent') }, 2000); }); // Part of the code responsible for loading percentages: $('.progress-bar-percent[data-percentage]').each(function () { var progress = $(this); var percentage = Math.ceil($(this).attr('data-percentage')); $({countNum: 0}).animate({countNum: percentage}, { duration: 2000, easing:'linear', step: function() { // What todo on every count var pct = ''; if(percentage == 0){ pct = Math.floor(this.countNum) + '%'; }else{ pct = Math.floor(this.countNum+1) + '%'; } progress.text(pct); } }); }); /*------------------------------------------------------------------------------*/ /* Tab /*------------------------------------------------------------------------------*/ $('.ttm-tabs > .tabs').children('li').on('click', function(e) { var tab = $(this).closest('.ttm-tabs > .tabs > .tab'), index = $(this).closest('.ttm-tabs > .tabs > li').index(); $(this).parents('.ttm-tabs').children('.tabs').children('li.active ').removeClass('active'); $(this).addClass('active'); $(this).addClass('active').parents('.ttm-tabs').children('.content-tab').find('.content-inner').not('.content-inner:eq(' + index + ')').slideUp(); $(this).addClass('active').parents('.ttm-tabs').children('.content-tab').find('.content-inner:eq(' + index + ')').slideDown(); e.preventDefault(); }); /*------------------------------------------------------------------------------*/ /* Accordion /*------------------------------------------------------------------------------*/ var allPanels = $('.accordion > .toggle').children('.toggle-content').hide(); $('.toggle-title').on('click',function(e) { e.preventDefault(); var $this = $(this); $this.parent().parent().find('.toggle .toggle-title a').removeClass('active'); if ($this.next().hasClass('show')) { $this.next().removeClass('show'); $this.next().slideUp('easeInExpo'); } else { $this.parent().parent().find('.toggle .toggle-content').removeClass('show'); $this.parent().parent().find('.toggle .toggle-content').slideUp('easeInExpo'); $this.next().toggleClass('show'); $this.next().removeClass('show'); $this.next().slideToggle('easeInExpo'); $this.next().parent().children().children().addClass('active'); } }); $(function () { jQuery(".img-fluid:not(.alignleft, .alignright, .slider_arrow, .auto_size)").attr("height", "100%")}); $(function () { jQuery(".img-fluid:not(.alignleft, .alignright, .slider_arrow, .auto_size)").attr("width", "100%")}); /*------------------------------------------------------------------------------*/ /* Isotope /*------------------------------------------------------------------------------*/ $(function () { if ( $().isotope ) { var $container = $('.isotope-project'); $container.imagesLoaded(function(){ $container.isotope({ itemSelector: '', transitionDuration: '1s', }); }); $('.portfolio-filter li').on('click',function() { var selector = $(this).find("a").attr('data-filter'); $('.portfolio-filter li').removeClass('active'); $(this).addClass('active'); $container.isotope({ filter: selector }); return false; }); }; }); /*------------------------------------------------------------------------------*/ /* Prettyphoto /*------------------------------------------------------------------------------*/ $(function () { // Normal link jQuery('a[href*=".jpg"], a[href*=".jpeg"], a[href*=".png"], a[href*=".gif"]').each(function(){ if( jQuery(this).attr('target')!='_blank' && !jQuery(this).hasClass('prettyphoto') && !jQuery(this).hasClass('modula-lightbox') ){ var attr = $(this).attr('data-gal'); if (typeof attr !== typeof undefined && attr !== false && attr!='prettyPhoto' ) { jQuery(this).attr('data-rel','prettyPhoto'); } } }); jQuery('a[data-gal^="prettyPhoto"]').prettyPhoto(); jQuery('a.ttm_prettyphoto').prettyPhoto(); jQuery('a[data-gal^="prettyPhoto"]').prettyPhoto(); jQuery("a[data-gal^='prettyPhoto']").prettyPhoto({hook: 'data-gal'}) }); $(document).ready(function() { var e = '<div class="prt_floting_customsett">'+ '<a href="https://support.preyantechnosys.com/" class="tmtheme_fbar_icons"><i class="fa fa-headphones"></i><span>Support</span></a>'+ '<a href="https://preyantechnosys.com/" class="tmtheme_fbar_icons"><i class="themifyicon themifyicon ti-pencil"></i><span>Customization</span></a>'+ '<a href="https://1.envato.market/b3P2y9" class="tmtheme_fbar_icons"><i class="themifyicon ti-shopping-cart"></i><span class="buy_link">Buy<span></span></span></a>'+ '<div class="clearfix"></div>'+ '</div>'; $('body').append(e); }); /*------------------------------------------------------------------------------*/ /* Slick_slider /*------------------------------------------------------------------------------*/ $(".slick_slider").slick({ speed: 1000, infinite: true, arrows: false, dots: false, autoplay: false, centerMode : false, responsive: [{ breakpoint: 1360, settings: { slidesToShow: 3, slidesToScroll: 3 } }, { breakpoint: 1024, settings: { slidesToShow: 3, slidesToScroll: 3 } }, { breakpoint: 680, settings: { slidesToShow: 2, slidesToScroll: 2 } }, { breakpoint: 575, settings: { slidesToShow: 1, slidesToScroll: 1 } }] }); /*------------------------------------------------------------------------------*/ /* Back to top /*------------------------------------------------------------------------------*/ // ===== Scroll to Top ==== jQuery('#totop').hide(); $(window).on("scroll",function(){ if (jQuery(this).scrollTop() >= 500) { // If page is scrolled more than 50px jQuery('#totop').fadeIn(200); // Fade in the arrow jQuery('#totop').addClass('top-visible'); } else { jQuery('#totop').fadeOut(200); // Else fade out the arrow jQuery('#totop').removeClass('top-visible'); } }); jQuery('#totop').on("click",function() { // When arrow is clicked jQuery('body,html').animate({ scrollTop : 0 // Scroll to top of body }, 500); return false; }); }); /*------------------------------------------------------------------------------*/ /* margin padding /*------------------------------------------------------------------------------*/ $(function () { jQuery('.ttm-expandcontent-yes').each(function(){ var cmt_column_div = ''; var scrren_size = jQuery( window ).width(); var box_size = jQuery(this).parent().width(); var extra_size = ((scrren_size - box_size)/2); if( jQuery(this).hasClass('ttm-right-span') ){ cmt_column_div = ', .ttm-expandcontent-yes-wrapper > .expandcontent:not(.tm_column_wrapper)'; jQuery('.ttm-expandcontent-yes-wrapper > .cmt-col-wrapper-bg-layer'+cmt_column_div, jQuery(this)).css( 'margin-right','-'+extra_size+'px' ); } else if( jQuery(this).hasClass('ttm-left-span') ){ cmt_column_div = ', .ttm-expandcontent-yes-wrapper > .expandcontent:not(.cmt_column_wrapper)'; jQuery('.ttm-expandcontent-yes-wrapper > .cmt-col-wrapper-bg-layer'+cmt_column_div, jQuery(this)).css( 'margin-left','-'+extra_size+'px' ); } }); });