当然我没有解释:我已经可以禁用html页面的触摸了。我只想做与本页(Disable scrolling, but maintain ability to zoom)相反的内容。所以我想滚动是,但没有缩放...
在移动网页上,我需要禁用触摸缩放,但要保持刷新页面的可能性。您将有一个javascript示例。现在,我已经使用了这段代码,但是它禁用了整个页面的触摸。
<style type="text/css">
a:link, a:visited {text-decoration:none}
html
{
touch-action: none;
}
</style>
有人对此有任何想法吗?