/*jshint jquery:true */ /*global $:true */ var $ = jQuery.noConflict(); $(document).ready(function($) { "use strict"; /* global google: false */ /*jshint -W018 */ /*-------------------------------------------------*/ /* = portfolio isotope /*-------------------------------------------------*/ var winDow = $(window); // Needed variables var $container=$('.iso-call'); var $filter=$('.filter'); try{ $container.imagesLoaded( function(){ $container.trigger('resize'); $container.addClass('active'); $container.isotope({ filter:'*', layoutMode:'masonry', animationOptions:{ duration:750, easing:'linear' } }); }); } 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'); } }); $('#container').addClass('active'); /*-------------------------------------------------*/ /* = browser detect /*-------------------------------------------------*/ try { $.browserSelector(); // Adds window smooth scroll on chrome. if($("html").hasClass("chrome")) { $.smoothScroll(); } } catch(err) { } /*-------------------------------------------------*/ /* = fullwidth carousell /*-------------------------------------------------*/ try { var owl = $("#owl-demo").owlCarousel({ autoPlay: 10000, items : 3, itemsDesktop : [1199,2], itemsDesktopSmall : [979,2] }); // Custom Navigation Events $(".arrow-box .next").click(function(event){ event.preventDefault(); owl.trigger('owl.next'); }); $(".arrow-box .prev").click(function(event){ event.preventDefault(); owl.trigger('owl.prev'); }); var owl2 = $("#owl-demo2").owlCarousel({ autoPlay: 10000, items : 4, itemsDesktop : [1199,3], itemsDesktopSmall : [979,2] }); // Custom Navigation Events $(".arrow-box2 .next").click(function(event){ event.preventDefault(); owl2.trigger('owl.next'); }); $(".arrow-box2 .prev").click(function(event){ event.preventDefault(); owl2.trigger('owl.prev'); }); } catch(err) { } /*-------------------------------------------------*/ /* = Search animation /*-------------------------------------------------*/ var searchToggle = $('.open-search'), inputAnime = $(".form-search"), body = $('body'); searchToggle.on('click', function(event){ event.preventDefault(); if ( !inputAnime.hasClass('active') ) { inputAnime.addClass('active'); } else { inputAnime.removeClass('active'); } }); body.on('click', function(){ inputAnime.removeClass('active'); }); var elemBinds = $('.open-search, .form-search'); elemBinds.bind('click', function(e) { e.stopPropagation(); }); /* ---------------------------------------------------------------------- */ /* Accordion /* ---------------------------------------------------------------------- */ var clickElem = $('a.accord-link'); clickElem.on('click', function(e){ e.preventDefault(); var $this = $(this), parentCheck = $this.parents('.accord-elem'), accordItems = $('.accord-elem'), accordContent = $('.accord-content'); if( !parentCheck.hasClass('active')) { accordContent.slideUp(400, function(){ accordItems.removeClass('active'); }); parentCheck.find('.accord-content').slideDown(400, function(){ parentCheck.addClass('active'); }); } else { accordContent.slideUp(400, function(){ accordItems.removeClass('active'); }); } }); /*-------------------------------------------------*/ /* = 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: '75%', triggerOnce: true } ); } catch(err) { } /*-------------------------------------------------*/ /* = remove animation in mobile device /*-------------------------------------------------*/ if ( winDow.width() < 992 ) { $('div.triggerAnimation').removeClass('animated'); $('div.triggerAnimation').removeClass('triggerAnimation'); } /*-------------------------------------------------*/ /* = slider Testimonial /*-------------------------------------------------*/ var slidertestimonial = $('.bxslider'); try{ slidertestimonial.bxSlider({ mode: 'vertical' }); } catch(err) { } /* ---------------------------------------------------------------------- */ /* flexslider /* ---------------------------------------------------------------------- */ try { var SliderPost = $('.flexslider'); SliderPost.flexslider({ slideshowSpeed: 3000, easing: "swing" }); } catch(err) { } /* ---------------------------------------------------------------------- */ /* magnific-popup /* ---------------------------------------------------------------------- */ try { // Example with multiple objects $('.zoom').magnificPopup({ type: 'image', gallery: { enabled: true } }); } catch(err) { } /* ---------------------------------------------------------------------- */ /* Contact Map 2 /* ---------------------------------------------------------------------- */ var contact = {"lat":"-33.880641", "lon":"151.204298"}; //Change a map coordinate here! try { var mapContainer = $('#map2'); mapContainer.gmap3({ action: 'addMarker', marker:{ options:{ icon : new google.maps.MarkerImage('images/marker.png') } }, latLng: [contact.lat, contact.lon], map:{ center: [contact.lat, contact.lon], zoom: 16 }, }, {action: 'setOptions', args:[{scrollwheel:false}]} ); } 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'); } } }); }); //Quote Form var submitQuote = $('#submit-quote'), message = $('#quote-msg'); submitQuote.on('click', function(e){ e.preventDefault(); var $this = $(this); $.ajax({ type: "POST", url: 'quote.php', dataType: 'json', cache: false, data: $('#quote-form').serialize(), success: function(data) { if(data.info !== 'error'){ $this.parents('form').find('input[type=text],textarea').filter(':visible').val(''); $this.parents('form').find('select').filter(':visible'); 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'); } } }); }); /* ---------------------------------------------------------------------- */ /* Header animate after scroll /* ---------------------------------------------------------------------- */ (function() { var docElem = document.documentElement, didScroll = false, changeHeaderOn = 50; document.querySelector( 'header' ); function init() { window.addEventListener( 'scroll', function() { if( !didScroll ) { didScroll = true; setTimeout( scrollPage, 100 ); } }, false ); } function scrollPage() { var sy = scrollY(); if ( sy >= changeHeaderOn ) { $( 'header' ).addClass('active'); } else { $( 'header' ).removeClass('active'); } didScroll = false; } function scrollY() { return window.pageYOffset || docElem.scrollTop; } init(); })(); /* ---------------------------------------------------------------------- */ /* menu responsive /* ---------------------------------------------------------------------- */ var menuClick = $('a.elemadded'), navbarVertical = $('.nav-menu'); menuClick.on('click', function(e){ e.preventDefault(); if( navbarVertical.hasClass('active') ){ navbarVertical.removeClass('active'); } else { navbarVertical.addClass('active'); } }); winDow.bind('resize', function(){ navbarVertical.removeClass('active'); }); }); /* ---------------------------------------------------------------------- */ /* map street view mode function /* ---------------------------------------------------------------------- */ function initialize() { var bryantPark = new google.maps.LatLng(35.639543,-77.371199); //Change a map street view cordinate here! {"lat":"-33.880641", "lon":"151.204298"} var panoramaOptions = { position: bryantPark, pov: { heading: 165, pitch: 0 }, zoom: 1 }; var myPano = new google.maps.StreetViewPanorama( document.getElementById('map'), panoramaOptions); myPano.setVisible(true); } try { google.maps.event.addDomListener(window, 'load', initialize); } catch(err) { }