Git Product home page Git Product logo

Comments (6)

mbostock avatar mbostock commented on May 18, 2024 6

It’s very easy to add an additional wheel listener that always calls event.preventDefault if that is your desired behavior. As in:

selection
    .call(zoom)
    .on("wheel", function() { d3.event.preventDefault(); });

from d3-zoom.

mbostock avatar mbostock commented on May 18, 2024 1

Hmm. This is actually really annoying in practice, since you can’t easily zoom out all the way without also scrolling down:

http://bl.ocks.org/mbostock/db6b4335bf1662b413e7968910104f0f

from d3-zoom.

manake avatar manake commented on May 18, 2024 1

I have this issue in v7.7.0. I zoom in/out all the way and then the mouse wheel starts scrolling body.

d3.event.preventDefault(); and event.preventDefault(); are not defined in v7.7.0 like described here:

selection
    .call(zoom)
    .on("wheel", function() { d3.event.preventDefault(); });

Does anyone know what's the current code to disable body scrolling while the mouse cursor is over the zoom rect?

from d3-zoom.

mbostock avatar mbostock commented on May 18, 2024

I think what we need to do is consume all wheel events during an active wheel gesture, BUT, if a new wheel gesture starts and you’ve already zoomed out, then we ignore it and let the page scroll down. That way you can zoom out all the way without scrolling down, but if you try to zoom out again, it will then scroll down.

It’d be nice if we ignored wheel events immediately following scroll events, so that you could likewise scroll down without getting sucked into a zoomable element when the mouse enters. But that could lead to other problems, so seems best to ignore that for now.

from d3-zoom.

brewmook avatar brewmook commented on May 18, 2024

It would be nice if this behaviour could be switched off (or configure the timeout). I personally find the switching zoom/scroll behaviour a bit annoying even with the timeout.

from d3-zoom.

brewmook avatar brewmook commented on May 18, 2024

Ah, perfect, thanks. :)

from d3-zoom.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.