该插件将样式属性user-select: none
设置为子项:
<main class="foo" style="touch-action: pan-y; user-select: none; -webkit-user-drag: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0);">
...
</div>
如何摆脱这种情况,如何设置user-select: auto
?
所有这些都不起作用。
<Hammer onSwipe={this.handleSwipe} options={{defaults: {cssProps: { userSelect: true }} }} >
<Hammer onSwipe={this.handleSwipe} options={{cssProps: { userSelect: true } }} >
<Hammer onSwipe={this.handleSwipe} options={{defaults: { behavior: {cssProps: { userSelect: true }} }}} >