jQuery on window scroll animate background image position

前端 未结 6 2295
小鲜肉
小鲜肉 2020-12-12 18:26

I am trying to achieve a scrolling effect using jQuery. I have a background div set to 100% browser window size with overflow hidden. This has a large background image that

6条回答
  •  生来不讨喜
    2020-12-12 19:19

    This might do it:

    $(window).scroll(function(){
        $('#div').css("background-position",parseInt($(this).scrollTop()*0.05));
    })
    

提交回复
热议问题