1

我搜索了很多关于这个主题但找不到任何答案。我很喜欢构建一个android应用程序。我使用了来自 www.roundsliderui.com 的圆形滑块组件。虽然整个圆形滑块完全可以工作,但在圆形滑块中间的文本输入在 ionic 中不起作用。我发现 ionic 应用程序中的 ionic.bundles.js 脚本引起了问题。如果我删除这个脚本,roundslider 工作正常。

有什么建议为什么这个脚本会导致问题?

谢谢

4

2 回答 2

1

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.

于 2016-05-16T06:47:00.683 回答
0

roundsliderui 和 ionic 文件之间存在冲突
, 请阅读这篇文章,这将对您有所帮助

问题是在渲染圆形滑块时模态未完全加载。本文正确地指出,如果文档(在本例中为模态)未完成加载,则 offsetPosition 为 null

于 2016-03-09T09:50:01.310 回答