LoginSignup
1
0

More than 5 years have passed since last update.

サイネージ、トップからの遷移メモ

Posted at

サイネージのトップページから遷移する方法
どこかの要素をクリック、もしくはYキーを取得


/*↓----------topクリック----------↓*/
$(function(){
    $(".tap-move").click(function() {
      setTimeout(function(){
        window.location.href = 'xxxx.html';
      }, 800);
          //window.location.href = 'xxxx.html';
    });
/*↑----------topクリック----------↑*/


/*↓----------Yキーで遷移----------↓*/
document.onkeydown = pageMove;
function pageMove(){
  if (event.keyCode == 89){  //「Y」が押されたか確認
    setTimeout(function(){
        window.location.href = 'xxxx.html';
      }, 800);
    //window.location.href = 'xxxx.html';
  }
}
/*↑----------Yキーで遷移----------↑*/

});
/*↑----------topからの遷移----------↑*/

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0