Jump to content
Search Community

Larc

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by Larc

  1. I found the solution. The problem: Hiding the scroll bar with some method like: CSS: overflow-y: hidden; GSAP: TweenLite.set ("# scroller", {overflowY: "hidden"}); The event mouse wheel stops working. The solution is to revive the event with something like: $ event.props.push ("wheelDelta").; $ ('Element'). On ('mousewheel DOMMouseScroll', function (e) { var delta = e.wheelDelta | |-e.detail; this.scrollTop + = (delta <0 1: -1) * 30; e.preventDefault (); }); this with the help of jQuery.
  2. Hi thanks for replying. the solution you give me is great, but to hide the scroll using scroll with the mouse wheel is disabled.
  3. Hello everyone. Is it possible to use scrollTop not show scroll? something like overflow-y: hidden;
×
×
  • Create New...