Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图让鼠标离开后悬停后出现的视频重置为开始,这是我的测试的链接。我在寻找答案时发现了这一点, 但我不知道如何让它发挥作用。
这是我获得 javascript 代码的地方:链接到代码
任何帮助或建议都会很棒。谢谢!:)
由于您的网站使用 jQuery:
$(".h5vt").mouseout(function() { $("video").get(0).currentTime = 0; })
只需将mouseout事件绑定到倒带视频的图像即可。
mouseout
您应该id向视频添加一个属性,并使用$("#myvideoid").get(0)或document.getElementById("myvideoid")代替$("video").get(0)我的示例中的使用来访问它。由于您的视频元素缺少id.
id
$("#myvideoid").get(0)
document.getElementById("myvideoid")
$("video").get(0)