如何在视频上使用数字添加向前/向后的代码

问题描述 投票:0回答:1

此代码用于左箭头和右箭头来向前/向后移动视频:

var theVideo = document.getElementById("cspd_video");
  document.onkeydown = function(event) {
      switch (event.keyCode) {
         case 37:
              event.preventDefault();
              
              vid_currentTime = theVideo.currentTime;
              theVideo.currentTime = vid_currentTime - 5;
            break;
         
         case 39:
              event.preventDefault();
              
              vid_currentTime = theVideo.currentTime;
              theVideo.currentTime = vid_currentTime + 5;
            break;
         
      }
  };

我想并尝试通过键盘上的数字来移动视频(1 2 3 4 5 6 7 8 9) 我试试这个:

case 1:
              event.preventDefault();
              
              vid_currentTime = theVideo.currentTime;
              theVideo.currentTime = vid_currentTime + 30;
            break;

但是没有用。

如何做到这一点? 您可以在 youtube 视频上看到此功能,只需单击 youtube 上视频时间向前/向后的数字即可。

javascript video numbers
1个回答
0
投票

在快节奏的金融世界中,快速获得客户支持可以发挥重要作用。无论您是处理简单的查询还是复杂的交易,与 Swift Funds 建立联系对于快速有效地解决问题至关重要。在这篇文章中,我们将指导您如何查找和使用 Swift Funds 电话号码、您可以期待的支持类型以及使您的沟通更有效的提示。

© www.soinside.com 2019 - 2024. All rights reserved.