Giter Club home page Giter Club logo

Comments (4)

nir9 avatar nir9 commented on June 2, 2024 2

If I understand correctly you mean what happens when you mousedown and drag on a link inside a slide, you can disable this behavior by calling preventDefault on the mousedown event on the link element, see the following example : https://jsfiddle.net/rg0cq8Lf/3/

Maybe I'll add an option to the library that will does this for all links in the carousel..

from itemslide.

PurHur avatar PurHur commented on June 2, 2024 1

Quick idea:
I think a other "hotfix" will work better for you:
create an onDragStart function wich sets https://developer.mozilla.org/de/docs/Web/CSS/pointer-events on all links to none.
After onDragEnd you remove that css command.

from itemslide.

fwebdev avatar fwebdev commented on June 2, 2024

Unfortunatly the solution is not working. The Link is been called when you start sliding on the Link. You don't see any effect, because the Link goes to '#'. So you stay on the same Page.

I forked the jsFiddle and added real links to the href: https://jsfiddle.net/7uj1cer9/

from itemslide.

PurHur avatar PurHur commented on June 2, 2024

This is a browser wide topic. What do you use to test? Welcome in the world of browsers and their implementation 🎉

I made quick tests that works for me in chrome. Feel free to test it in all browsers and versions.

$("a").on("mousedown touch click", function(event) {
  event.preventDefault();
});

from itemslide.

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.