luke-chang / js-spatial-navigation

A javascript-based implementation of Spatial Navigation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Allow navigation with Mousewheel too

onigetoc opened this issue · comments

Yeah, it's a good option. Maybe you can do something like:

$(window).mousewheel(function(turn, delta) {
  if (delta == 1) {
    SpatialNavigation.move("down");
  } else {
    SpatialNavigation.move("up");
  }
  return false;
});
commented

Thank you, this is exactly what i did yesterday and it's working.
Mousewheel + Sound navigation.
Far from perfect, i will try to center focused element on overflow.
http://tvcast.top/scripts/js-spatial-navigation-master/demo/3.2_like_youtube_tv-mousewheel.html

Good to know it works. :)