You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
741 B
JavaScript
54 lines
741 B
JavaScript
1 year ago
|
$(document).ready(function(){
|
||
|
|
||
|
|
||
|
$("#portfolio-contant-active").mixItUp();
|
||
|
|
||
|
|
||
|
$("#testimonial-slider").owlCarousel({
|
||
|
paginationSpeed : 500,
|
||
|
singleItem:true,
|
||
|
autoPlay: 3000,
|
||
|
});
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
$("#clients-logo").owlCarousel({
|
||
|
autoPlay: 3000,
|
||
|
items : 5,
|
||
|
itemsDesktop : [1199,5],
|
||
|
itemsDesktopSmall : [979,5],
|
||
|
});
|
||
|
|
||
|
$("#works-logo").owlCarousel({
|
||
|
autoPlay: 3000,
|
||
|
items : 5,
|
||
|
itemsDesktop : [1199,5],
|
||
|
itemsDesktopSmall : [979,5],
|
||
|
});
|
||
|
|
||
|
|
||
|
// google map
|
||
|
var map;
|
||
|
function initMap() {
|
||
|
map = new google.maps.Map(document.getElementById('map'), {
|
||
|
center: {lat: -34.397, lng: 150.644},
|
||
|
zoom: 8
|
||
|
});
|
||
|
}
|
||
|
|
||
|
|
||
|
// Counter
|
||
|
|
||
|
$('.counter').counterUp({
|
||
|
delay: 10,
|
||
|
time: 1000
|
||
|
});
|
||
|
|
||
|
|
||
|
});
|
||
|
|
||
|
|
||
|
|
||
|
|