Giter VIP home page Giter VIP logo

Comments (2)

Luoti avatar Luoti commented on June 19, 2024

I did a quick fix for this when using the plugin on the "on click" event. I did not submit a Pull Request, because I feel this is way too raw to be included in the main code.

My fix was to change the beginning oh the move function (starting from a line 62) to look like this:

function move(e) {
    if (e.type == 'touchmove')
    {
        left = (e.originalEvent.touches[0].pageX - offset.left);
        top = (e.originalEvent.touches[0].pageY- offset.top);
    }
    else
    {
        left = (e.pageX - offset.left);
        top = (e.pageY - offset.top);
    }

    if (left > outerWidth) {
        left = outerWidth;
    } else if (left < 0) {
        left = 0;
    }

and starting from line 151

start(e);

$(document)[mousemove](move);
$(document).on('touchmove', move);

$(document).one('click',
    function () {
        stop();
        clicked = false;
        $(document).unbind(mousemove, move);
        $(document).off('touchmove', move);
    }
);

from zoom.

gonzzza007 avatar gonzzza007 commented on June 19, 2024

This code (move function) is now updated. However the problems on IOS (chrome) still exist. I can zoom the image one of 10 times. Another 9 times the zoom is reset in fraction of the second.

from 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.