
OWL Carousel, Touch enabled jQuery plugin that lets you create beautiful responsive carousel slider.http://owlgraphic.com/owlcarousel/
OWL Carousel, Touch enabled jQuery plugin that lets you create beautiful responsive carousel slider.http://owlgraphic.com/owlcarousel/
var scrolled = false; $(window).scroll(function () { if (650 < $(window).scrollTop() && !scrolled) { ——————————-animation here—————————— scrolled = true; } if (650 > $(window).scrollTop() && scrolled) { ——————————-animation here—————————— scrolled = false; } });
function equalHeight(group) { var tallest = 0; group.each(function() { var thisHeight = $(this).height(); if(thisHeight > tallest) { tallest = thisHeight; } }); group.height(tallest); } equalHeight($(“.equal-blocks”));