从javascript触发输入动作

时间:2019-05-16 22:16:07

标签: javascript html

我想从javascript代码触发输入事件的操作。我需要使用javascript中的滑动手势来触发该动作,该动作是其他javascript库的功能

这是我要触发该类的操作,您可以选择“ pt-trigger”数据动画和所需的页面,而“ data-goto”则选择要转到的页面,这是其他JavaScript库

<input id ="flechanegra10" type="image" src="img/flechaabajo.png" class="pt-trigger"  data-animation="3" data-goto="-1" width="63" height="63" />

我想知道是否所有通过“ javascript”触发的“输入”中发生的事情如果diffY> 0都能检测到向上或向下滑动:

// sliding vertically
        if (diffY > 0) {
          // swiped up
          label.textContent = "up";
          console.log("swiped up");
        } else {
          // swiped down
          label.textContent = "down";
          $link = $('a:first');
          $("input").select(function();
          console.log("swiped down");
        }  
      }

1 个答案:

答案 0 :(得分:0)

当前在HTML上没有可用的“ onswipe”事件。不过,您可以使用Java脚本实现自己的脚本,这里是一个很好的参考资源:https://css-tricks.com/simple-swipe-with-vanilla-javascript/