限制js窗口滚动变量值

时间:2019-01-20 20:02:05

标签: javascript jquery html

如何将wScroll变量限制在0到90之间,以使代码不会出错?

$(function(){

  $(window).on({
    scroll: function() {
      let wScroll = $(this).scrollTop();
      
      $("img").css({
        "transform":"rotateZ(" + wScroll + "deg)"
      })
    }
  })
  
})

0 个答案:

没有答案