Simulate swipe with mouse in javascript

30,779

Solution 1

You'll want to handle onmousedown, onmousemove, and onmouseup events, keeping track of the mouse position and manipulating your image rotator accordingly.

Solution 2

I've looked into most of these... I'd recommend looking into

Hammer.Js

From what little I've seen, it has support for both desktop and mobile swiping and I was impressed with the demos.

Solution 3

I believe you are looking for this answer: Standalone jQuery "touch" method?

The accepted answer has code to implement swipe left/right support and another answer lower down has a link to a plugin that does a similar task: http://www.netcu.de/jquery-touchwipe-iphone-ipad-library (this plugin allows detection of swipes in four directions).

Solution 4

When you use Hammer.js, you also have support for touch/mouse and pointer events. This for touch screen laptops like the chromebook pixel and windows8. Most of the libraries out there dont support those yet.

Solution 5

I ended up using iDangerous iSwiper, which met all my needs and is (IMO) very excellent.

Share:
30,779
gabitzish
Author by

gabitzish

Updated on July 09, 2022

Comments

  • gabitzish
    gabitzish almost 2 years

    I'm trying to make an image rotator that works on mobile devices using swipe for navigation. I'm also trying to make the same rotator to work on PC browsers but to be able to use the mouse drag to simulate swipe. Any good ideeas?

  • Netsi1964
    Netsi1964 over 5 years
    Your link is a dead link