var scrolled = false;
$(window).scroll(function () {
if (650 < $(window).scrollTop() && !scrolled) {
——————————-animation here——————————
scrolled = true;
}
if (650 > $(window).scrollTop() && scrolled) {
——————————-animation here——————————
scrolled = false;
}
});