File size: 4,072 Bytes
a3d6c18 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
/* ========================================================================= */
/* Preloader
/* ========================================================================= */
jQuery(window).load(function(){
$("#preloader").fadeOut("slow");
});
$(document).ready(function(){
/* ========================================================================= */
/* Menu item highlighting
/* ========================================================================= */
jQuery('#nav').singlePageNav({
offset: jQuery('#nav').outerHeight(),
filter: ':not(.external)',
speed: 1200,
currentClass: 'current',
easing: 'easeInOutExpo',
updateHash: true,
beforeStart: function() {
console.log('begin scrolling');
},
onComplete: function() {
console.log('done scrolling');
}
});
$(window).scroll(function () {
if ($(window).scrollTop() > 400) {
$("#navigation").css("background-color","#021323");
} else {
$("#navigation").css("background-color","rgba(2, 19, 35, 0.7)");
}
});
/* ========================================================================= */
/* Fix Slider Height
/* ========================================================================= */
var slideHeight = $(window).height();
$('#slider, .carousel.slide, .carousel-inner, .carousel-inner .item').css('height',slideHeight);
$(window).resize(function(){'use strict',
$('#slider, .carousel.slide, .carousel-inner, .carousel-inner .item').css('height',slideHeight);
});
/* ========================================================================= */
/* Portfolio Filtering
/* ========================================================================= */
// portfolio filtering
$(".project-wrapper").mixItUp();
$(".fancybox").fancybox({
padding: 0,
openEffect : 'elastic',
openSpeed : 650,
closeEffect : 'elastic',
closeSpeed : 550,
closeClick : true,
});
/* ========================================================================= */
/* Parallax
/* ========================================================================= */
$('#facts').parallax("50%", 0.3);
/* ========================================================================= */
/* Timer count
/* ========================================================================= */
"use strict";
$(".number-counters").appear(function () {
$(".number-counters [data-to]").each(function () {
var e = $(this).attr("data-to");
$(this).delay(6e3).countTo({
from: 50,
to: e,
speed: 3e3,
refreshInterval: 50
})
})
});
/* ========================================================================= */
/* Back to Top
/* ========================================================================= */
$(window).scroll(function () {
if ($(window).scrollTop() > 400) {
$("#back-top").fadeIn(200)
} else {
$("#back-top").fadeOut(200)
}
});
$("#back-top").click(function () {
$("html, body").stop().animate({
scrollTop: 0
}, 1500, "easeInOutExpo")
});
});
// ========== START GOOGLE MAP ========== //
function initialize() {
var myLatLng = new google.maps.LatLng(22.402789, 91.822156);
var mapOptions = {
zoom: 14,
center: myLatLng,
disableDefaultUI: true,
scrollwheel: false,
navigationControl: false,
mapTypeControl: false,
scaleControl: false,
draggable: false,
mapTypeControlOptions: {
mapTypeIds: [google.maps.MapTypeId.ROADMAP, 'roadatlas']
}
};
var map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions);
var marker = new google.maps.Marker({
position: myLatLng,
map: map,
icon: 'img/location-icon.png',
title: '',
});
}
google.maps.event.addDomListener(window, "load", initialize);
// ========== END GOOGLE MAP ========== //
|