我尝试在KaiOS
上向我的应用添加空间导航,但是我不能。 Page的信息很少。例如,当我添加代码时:
function nav (move) {
var next = currentIndex + move;
var items = document.querySelectorAll('.items');
var targetElement = items[next];
targetElement.focus();
}
我收到此错误
currentIndex未定义
也许您有一些有关空间导航的有效示例?
答案 0 :(得分:0)
KaiOS最近仍在尝试改善其文档...
currentIndex 指的是您关注的当前tabIndex
数字,他们没有给出完整的示例。
我建议您使用自己的导航实现,或者使用已经作为开放源代码提供的导航库。
https://github.com/svarunan/firefox-os-sample-app-未使用任何库,一个Kaios示例应用程序
https://github.com/luke-chang/js-spatial-navigation-使用箭头键的通用导航库
答案 1 :(得分:0)