$(window).scroll(function (event) { var scroll_pos = $(window).scrollTop(); //$("#count_pos").html(scroll_pos); if(scroll_pos>=200){ $(".navbar").addClass('navbar-background-color'); } else { $(".navbar").removeClass('navbar-background-color');; } }); $(".video-column iframe").removeAttr("width").removeAttr("height").attr("width", "100%").attr("height", "400"); $(".map-column iframe").removeAttr("width").removeAttr("height").attr("width", "100%").attr("height", "480"); $(document).ready(function() { $("body").niceScroll({touchbehavior:false,cursorcolor:"#777777",cursoropacitymax:0.7,cursorwidth:11,cursorborder:"1px solid #777777",cursorborderradius:"8px",background:"#ccc",autohidemode:"scroll"}); // MAC like scrollbar }); if (typeof autoload_cat == 'undefined') { var autoload_cat = 0; } $(function () { var filterList = { init: function () { // MixItUp plugin // http://mixitup.io $('#portfoliolist').mixItUp({ selectors: { target: '.portfolio', filter: '.filter' }, load: { filter: '.'+autoload_cat } }); } }; // Run the show! filterList.init(); }); $("a").click(function() { var targetDiv = $(this).attr('hhref'); $('html, body').animate({ scrollTop: ($(targetDiv).offset().top-100) }, 1000, 'easeOutExpo'); });