bootstrap-touch-carousel icon indicating copy to clipboard operation
bootstrap-touch-carousel copied to clipboard

Difficult to swipe

Open mstrelan opened this issue 10 years ago • 7 comments

Is it just me or is it really difficult to change slides? It seems you have to very particular in your swiping motion and timing. Immediately after completing a swipe you have to wait a second or so before going again, and you need to make sure you slide about 80% of the screen. I'm on a Nexus 5, anyone else experiencing this?

mstrelan avatar Mar 16 '14 21:03 mstrelan

Funny, on iOS it is almost too easy to swipe more than one image at a time ;-)

apemsel avatar Mar 17 '14 06:03 apemsel

@apemsel really, you could swipe multiple image with one gesture? @mstrelan I got this behavior if I add to many images to the carousel, 10+. Can you try with only 3 to 5 images!? Is it the same here

ixisio avatar Mar 17 '14 08:03 ixisio

Well actually I'm not using images, I'm using HTML content. In the end I used another solution because there were too many issues with this one (eg not able to click links in the slide content). Specifically (for anyone interested) I'm using JQuery TouchSwipe with this snippet.

    // Add touch events to the carousel.
    $('.carousel-inner').swipe({
      swipeLeft: function() {
        $(this).parent().carousel('next');
      },
      swipeRight: function() {
        $(this).parent().carousel('prev');
      },
      allowPageScroll: 'vertical',
      threshold: 25
    });

mstrelan avatar Mar 17 '14 18:03 mstrelan

@ixisio I cannot confirm this with vanilla bootstrap-touch-carousel right now. Unfortunately we had quite some bugs to fix to make it work for our current project. I am trying to clean this up and create pull requests for some of the fixes (the first was the event triggering stuff).

apemsel avatar Mar 17 '14 19:03 apemsel

@apemsel talking about this PR: https://github.com/ixisio/bootstrap-touch-carousel/pull/18?

ixisio avatar Jul 22 '14 04:07 ixisio

yes

apemsel avatar Jul 22 '14 07:07 apemsel

@apemsel so it's not good to merge, aye?

ixisio avatar Jul 25 '14 10:07 ixisio