Viewing 6 replies - 1 through 6 (of 6 total)
  • mbrsolution

    (@mbrsolution)

    Hi Karl, I am not sure what you mean by Touch compatible. Can you explain this?

    Thank you

    Thread Starter designdrumm

    (@designdrumm)

    Sure.

    Touch compatible as in mobile touch. When the user swipes on a mobile phone or tablet to the left or right or up or down (depending on direction of scroll set on the slideshow) it goes to the next slide. Like the arrows do currently for the slideshow.

    That a little more clear?
    Hoping so. Let me know if not.

    Best,
    Karl

    Thread Starter designdrumm

    (@designdrumm)

    Something like the following. This is just a touch detection sample, but along these lines.

    document.addEventListener('touchmove', function(e) {
        e.preventDefault();
        var touch = e.touches[0];
        alert(touch.pageX + " - " + touch.pageY);
    }, false);

    Found here: http://stackoverflow.com/questions/4755505/how-to-recognize-touch-events-using-jquery-in-safari-for-ipad-is-it-possible

    Thread Starter designdrumm

    (@designdrumm)

    This also look promising as it has UP, DOWN, LEFT and RIGHT.
    Its a cdn for touch events. May help, not sure.
    Don’t know if its ok to add such a thing to your plugin.

    https://cdnjs.com/libraries/jquery.touchswipe

    On the other hand, if it is ok, then your work is done for you.
    Just add-in and season to taste! (: ))

    HTH,

    Best,
    Karl

    mbrsolution

    (@mbrsolution)

    Thank you Karl for sharing the information. Now I know what you mean 🙂 sorry for not understanding what you meant when I read your question above.

    The plugin developer will look into your request further.

    Kind regards

    Thread Starter designdrumm

    (@designdrumm)

    Awesome! NP.

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Touch compatible??’ is closed to new replies.