例如,当用户按住后退按钮时是否可以触发事件?
我能够通过touchstart / touchend事件触摸屏幕上的元素,但是对于后退按钮,我只有这样的事件:
window.addEventListener('tizenhwkey', function(ev) {
if (ev.keyName === 'back') {
// hold logic here ?
}
});
我知道可以使用本机API,所以我可以使用Web API吗?
此致
答案 0 :(得分:2)
So far I know, there is no web API to get the back (H/W) key hold-event in Tizen-Web.
Thanks !!!