X7ROOT File Manager
Current Path:
/home/softbdltd/adexchangebd.com/js
home
/
softbdltd
/
adexchangebd.com
/
js
/
??
..
??
addsblockcode
(9.03 KB)
??
bootstrap.js
(57.09 KB)
??
gmap3.min.js
(27.98 KB)
??
jquery.appear.js
(1.45 KB)
??
jquery.bxslider.min.js
(18.72 KB)
??
jquery.flexslider.js
(39.79 KB)
??
jquery.imagesloaded.min.js
(1.22 KB)
??
jquery.isotope.min.js
(15.58 KB)
??
jquery.magnific-popup.min.js
(20.26 KB)
??
jquery.mb.YTPlayer.js
(37.94 KB)
??
jquery.migrate.js
(15.81 KB)
??
jquery.min.js
(90.93 KB)
??
plugins-scroll.js
(16.31 KB)
??
protection.php
(0 B)
??
retina-1.1.0.min.js
(2.92 KB)
??
script.js
(8.24 KB)
??
smooth-scroll.js
(3.6 KB)
??
waypoints.js
(16.95 KB)
Editing: script.js
/*jshint jquery:true */ /*global $:true */ var $ = jQuery.noConflict(); $(document).ready(function($) { "use strict"; /*-------------------------------------------------*/ /* = Top section /*-------------------------------------------------*/ var windowHeight = $(window).height(), topSection = $('#home-section'); topSection.css('height', windowHeight); $(window).resize(function(){ var windowHeight = $(window).height(); topSection.css('height', windowHeight); }); /*-------------------------------------------------*/ /* = flexslider /*-------------------------------------------------*/ try { var SliderPost = $('.flexslider'); SliderPost.flexslider({ animation: "fade" }); } catch(err) { } /*-------------------------------------------------*/ /* = portfolio isotope /*-------------------------------------------------*/ var winDow = $(window); // Needed variables var $container=$('.portfolio-container'); var $filter=$('.filter'); try{ $container.imagesLoaded( function(){ $container.show(); $container.isotope({ filter:'*', layoutMode:'masonry', animationOptions:{ duration:750, easing:'linear' } }); $('.triggerAnimation').waypoint(function() { var animation = $(this).attr('data-animate'); $(this).css('opacity', ''); $(this).addClass("animated " + animation); }, { offset: '80%', triggerOnce: true } ); }); } catch(err) { } winDow.bind('resize', function(){ var selector = $filter.find('a.active').attr('data-filter'); try { $container.isotope({ filter : selector, animationOptions: { duration: 750, easing : 'linear', queue : false, } }); } catch(err) { } return false; }); // Isotope Filter $filter.find('a').click(function(){ var selector = $(this).attr('data-filter'); try { $container.isotope({ filter : selector, animationOptions: { duration: 750, easing : 'linear', queue : false, } }); } catch(err) { } return false; }); var filterItemA = $('.filter li a'); filterItemA.on('click', function(){ var $this = $(this); if ( !$this.hasClass('active')) { filterItemA.removeClass('active'); $this.addClass('active'); } }); /*-------------------------------------------------*/ /* = preloader function /*-------------------------------------------------*/ winDow.load( function(){ var mainDiv = $('#container'), preloader = $('.preloader'); preloader.fadeOut(400, function(){ mainDiv.delay(400).addClass('active'); }); }); /*-------------------------------------------------*/ /* = smooth scroll in chrome /*-------------------------------------------------*/ try { $.browserSelector(); // Adds window smooth scroll on chrome. if($("html").hasClass("chrome")) { $.smoothScroll(); } } catch(err) { } /*-------------------------------------------------*/ /* = Animated content /*-------------------------------------------------*/ try { /* ================ ANIMATED CONTENT ================ */ if ($(".animated")[0]) { $('.animated').css('opacity', '0'); } $('.triggerAnimation').waypoint(function() { var animation = $(this).attr('data-animate'); $(this).css('opacity', ''); $(this).addClass("animated " + animation); }, { offset: '80%', triggerOnce: true } ); } catch(err) { } /* ---------------------------------------------------------------------- */ /* Contact Map /* ---------------------------------------------------------------------- */ var contact = {"lat":"51.51152", "lon":"-0.104198"}; //Change a map coordinate here! try { var mapContainer = $('.map'); mapContainer.gmap3({ action: 'addMarker', latLng: [contact.lat, contact.lon], map:{ center: [contact.lat, contact.lon], zoom: 14 }, }, {action: 'setOptions', args:[{scrollwheel:false}]} ); } catch(err) { } /* ---------------------------------------------------------------------- */ /* magnific-popup /* ---------------------------------------------------------------------- */ try { // Example with multiple objects $('.zoom').magnificPopup({ type: 'image' }); } catch(err) { } try { var magnLink = $('.page'); magnLink.magnificPopup({ closeBtnInside:true }); } catch(err) { } /*-------------------------------------------------*/ /* = slider Testimonial /*-------------------------------------------------*/ var slidertestimonial = $('.bxslider'); try{ slidertestimonial.bxSlider({ mode: 'horizontal' }); } catch(err) { } /*-------------------------------------------------*/ /* = video background /*-------------------------------------------------*/ try{ jQuery(".player").mb_YTPlayer(); } catch(err) { } /*-------------------------------------------------*/ /* = Carosells /*-------------------------------------------------*/ try { $('.carousel').carousel({ interval: false }); } catch(err) { } /*-------------------------------------------------*/ /* = count increment /*-------------------------------------------------*/ try { $('.counter').appear(function() { $('.counter').each(function(){ var dataperc = $(this).attr('data-perc'); $(this).find('.numb').delay(6000).countTo({ from: 0, to: dataperc, speed: 2000, refreshInterval: 100 }); }); }); } catch(err) { } /* ---------------------------------------------------------------------- */ /* Contact Form /* ---------------------------------------------------------------------- */ var submitContact = $('#submit_contact'), message = $('#msg'); submitContact.on('click', function(e){ e.preventDefault(); var $this = $(this); $.ajax({ type: "POST", url: 'contact.php', dataType: 'json', cache: false, data: $('#contact-form').serialize(), success: function(data) { if(data.info !== 'error'){ $this.parents('form').find('input[type=text],textarea,select').filter(':visible').val(''); message.hide().removeClass('success').removeClass('error').addClass('success').html(data.msg).fadeIn('slow').delay(5000).fadeOut('slow'); } else { message.hide().removeClass('success').removeClass('error').addClass('error').html(data.msg).fadeIn('slow').delay(5000).fadeOut('slow'); } } }); }); }); /* ---------------------------------------------------------------------- */ /* Count project function /* ---------------------------------------------------------------------- */ $.fn.countTo = function(options) { // merge the default plugin settings with the custom options options = $.extend({}, $.fn.countTo.defaults, options || {}); // how many times to update the value, and how much to increment the value on each update var loops = Math.ceil(options.speed / options.refreshInterval), increment = (options.to - options.from) / loops; return $(this).delay(1000).each(function() { var _this = this, loopCount = 0, value = options.from, interval = setInterval(updateTimer, options.refreshInterval); function updateTimer() { value += increment; loopCount++; $(_this).html(value.toFixed(options.decimals)); if (typeof(options.onUpdate) == 'function') { options.onUpdate.call(_this, value); } if (loopCount >= loops) { clearInterval(interval); value = options.to; if (typeof(options.onComplete) == 'function') { options.onComplete.call(_this, value); } } } }); }; $.fn.countTo.defaults = { from: 0, // the number the element should start at to: 100, // the number the element should end at speed: 1000, // how long it should take to count between the target numbers refreshInterval: 100, //how often the element should be updated decimals: 0, //the number of decimal places to show onUpdate: null, //callback method for every time the element is updated, onComplete: null,//callback method for when the element finishes updating };
Upload File
Create Folder