网页可以拖动的问题解决方法

在index.html <body>下面那个<script>中添加:

	document.body.addEventListener('touchmove', function (e) {
	e.preventDefault(); }, {passive: false});