【发布时间】:2014-01-16 03:39:05
【问题描述】:
我们正在使用 AngularJS、Bootstrap 和 Phonegap 来构建一个主要针对 iPad 的应用程序。到目前为止,我们一直在使用 Bootstrap list-group-item 类。我们发现,在触摸定义如下所示的视觉元素时,在用户触摸元素和接收到发生某事的视觉反馈之间可能存在半秒的延迟。有没有办法对此进行编码,以便用户在处理点击事件之前立即获得反馈 - 例如突出显示该区域?提供即时反馈会在应用程序的响应能力方面产生显着的感知变化。
<a class="list-group-item" ng-click="studentSelectClick(student.student_info.userId)">
<span ng-bind-template="{{student.student_info.firstName}}
{{student.student_info.lastName}}">
</span>
</a>
【问题讨论】:
标签: html angularjs cordova angularjs-directive