Advertisement
salmancreation

js code for html template themeforest

Dec 15th, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 1.78 KB | None | 0 0
  1.   //wow .js
  2.     //wow .js
  3.     /*
  4.     if ($(window).width() > 767) {
  5.         new WOW().init();
  6.     }
  7. --------------------------------------\\\\\\\\\\\\\\\\\
  8.  
  9.     $('a').on('click', function () {
  10.         if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
  11.             var target = $(this.hash);
  12.             target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
  13.             if (target.length) {
  14.                 $('html,body').animate({
  15.                     scrollTop: target.offset().top
  16.                 }, 1000);
  17.                 return false;
  18.             }
  19.         }
  20.     });
  21.  
  22. --------------\\\\\\\\\\\\\\\\\
  23.  
  24.  //counter
  25.     $('.count').each(function () {
  26.  
  27.  
  28.  
  29.             $(this).prop('Counter', 0).animate({
  30.                 Counter: $(this).text()
  31.             }, {
  32.                 duration: 4000,
  33.                 easing: 'swing',
  34.                 step: function (now) {
  35.                     $(this).text(Math.ceil(now));
  36.                 }
  37.             });
  38.         });
  39.  
  40.  
  41. -----------------\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
  42.  
  43.  
  44.     //stop the map zoom
  45.     if ($('#map').length) {
  46.         //Contact Map
  47.         var map;
  48.         map = new GMaps({
  49.             el: '#map'
  50.             , lat: -12.043333
  51.             , lng: -77.028333
  52.             , scrollwheel: false
  53.         });
  54.         map.drawOverlay({
  55.             lat: map.getCenter().lat()
  56.             ,
  57.             lng: map.getCenter().lng()
  58.             ,
  59.             layer: 'overlayLayer'
  60.             ,
  61.             content: '<div class="overlay_map"><img src="images/marker.png" alt="map-marker"></div></div>'
  62.             ,
  63.             verticalAlign: 'top'
  64.             ,
  65.             horizontalAlign: 'center'
  66.         });
  67.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement