How do I make this effect smoother?
$j(window).scroll(function () { console.log($j(document).scrollTop()); if ($j(document).scrollTop() >= 300) { $j('.logo img').attr('src', 'http://i.imgur.com/499DSOf.png').addClass('logozinho'); $j('.header-container').css({"borderTop":"none";}) } else { $j('.logo img').attr('src', 'http://roupasatacado.dev.bizcommerce.com.br/media/wysiwyg/LOGO/loja-logo_1_.png').removeClass('logozinho'); $j('.header-container').css({"borderTop":"1.5rem solid rgba(67, 67, 67, 0.12)"}); } });
If it were for example a toggle effect, it was only because of the "speed" in MS that would look nice, but in case of this code, how can I make it softer? Switching from one effect to another ...