javascript - scrolltop with if less than not work -
hello work create simple parallax effect there simple problem scroll top if less not work, need if user scroll bottom please animate position of flowers top:-20% left:-20% , if scroll top please animate position of flowers top:0; left:0; $(document).ready(function () { $(window).scroll(function () { var flowersleft = $(".flowers-topleft") if ($(window).scrolltop() > 50){ $(flowersleft).animate({ top: "-18%", left: "-20%" }, 600); $("body").css("background", "green"); } else { $(flowersleft).animate({ top: "0", left: "0" }, 600); $("body").css("background", "black"); } }) }) html{ height:100%; } body{ heigh...