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.
我有一个带有 jwplayer 的 wordpress 网站,但我想知道如何在 30 分钟后自动暂停它。
请帮我解决这个问题
请简要说明我可以在哪里放置代码以使其正常工作
谢谢你
“30 分钟后”有两种解释方式。如果您想在日历时间 30 分钟后执行此操作:
setTimeout(function(){ jwplayer().pause(); },30*60*1000);
如果您想在视频的 30 分钟大关时执行此操作:
jwplayer().onTime(function(event){ if(event.position > 30*60) { jwplayer().pause(); } });