search

Home  >  Q&A  >  body text

javascript - I want to make a canvas touch drawing board, but the screen will roll around while drawing. How to stop it?

touchmove insidee.prevetDefualtdoesn’t work

PHP中文网PHP中文网2837 days ago849

reply all(2)I'll reply

  • PHP中文网

    PHP中文网2017-06-30 09:58:11

    The drawing board is too big and the phone is too small
    This is the default event of the phone and cannot be stopped

    reply
    0
  • 仅有的幸福

    仅有的幸福2017-06-30 09:58:11

    Be careful that the width and height of the canvas do not overflow the html. The width and height set by the body and the size of the canvas must be appropriate. In addition, the body is set to overflow:hidden and no scroll bars appear; then disable the touchmove event;

        document.ontouchmove = function (e) {
            e.preventDefault();
            return false;
        }

    reply
    0
  • Cancelreply