移动鼠标时更改视频的时间

Change the time of a video when moving the mouse?

本文关键字:视频 时间 鼠标 移动      更新时间:2023-09-26

我偶然发现了这个魔兽世界网站,在检查了一些元素后,发现"旋转角色"是WebM/MP4视频。转到"字符"部分,选择一个字符,然后按下此按钮。这将加载他们旋转的视频。

这些视频可以根据您拖动光标的方向进行倒带和快进(左=反转,右=快进)。

我的问题很简单,那是什么函数?它是JavaScript吗?

提前谢谢。

这是JavaScript,这是他们正在使用的代码:

//this is for video on stage
CharacterSelect.ui.modelVideo = ModelVideo.build($(".model-video"));
//and this is when the page is ready
$(document).ready(function() {
if (ModelVideo.supportsVideo && !$('html').hasClass('ie')) {
  var modelVideo = videoController.create(".model-video");
}
});