-
Notifications
You must be signed in to change notification settings - Fork 0
/
foodhut.js
46 lines (36 loc) · 1.13 KB
/
foodhut.js
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
/*!
=========================================================
* FoodHut Landing page
=========================================================
* Copyright: 2019 DevCRUD (https://devcrud.com)
* Licensed: (https://devcrud.com/licenses)
* Coded by www.devcrud.com
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/
// smooth scroll
$(document).ready(function(){
$(".navbar .nav-link").on('click', function(event) {
if (this.hash !== "") {
event.preventDefault();
var hash = this.hash;
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 700, function(){
window.location.hash = hash;
});
}
});
});
new WOW().init();
function initMap() {
var uluru = {lat: 37.227837, lng: -95.700513};
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 8,
center: uluru
});
var marker = new google.maps.Marker({
position: uluru,
map: map
});
}