我搜索了很多关于这个主题但找不到任何答案。我很喜欢构建一个android应用程序。我使用了来自 www.roundsliderui.com 的圆形滑块组件。虽然整个圆形滑块完全可以工作,但在圆形滑块中间的文本输入在 ionic 中不起作用。我发现 ionic 应用程序中的 ionic.bundles.js 脚本引起了问题。如果我删除这个脚本,roundslider 工作正常。
有什么建议为什么这个脚本会导致问题?
谢谢
我搜索了很多关于这个主题但找不到任何答案。我很喜欢构建一个android应用程序。我使用了来自 www.roundsliderui.com 的圆形滑块组件。虽然整个圆形滑块完全可以工作,但在圆形滑块中间的文本输入在 ionic 中不起作用。我发现 ionic 应用程序中的 ionic.bundles.js 脚本引起了问题。如果我删除这个脚本,roundslider 工作正常。
有什么建议为什么这个脚本会导致问题?
谢谢
I had the same issue. You have to disable the tap functionality.
http://ionicframework.com/docs/api/page/tap/
"In some cases, third-party libraries may also be working with touch events which can interfere with the tap system. For example, mapping libraries like Google or Leaflet Maps often implement a touch detection system which conflicts with Ionic’s tap system."
<div data-tap-disabled="true">
//Your Round Slider here...
</div>
I hope it helps.