Wordpress媒体视频在特定时间开始并在焦点时自动播放

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

在我的主页上我有一个来自wordpress媒体的视频,我想知道是否有办法在给定时间启动视频,并仅在聚焦时自动播放。

wordpress video media
1个回答
0
投票
 setTimeout( function(){ 
    jQuery('.wp-video video').get(0).play(); 
  }  , 1000 );

jQuery(document).on('mouseover', '.wp-video', function(){ 
    jQuery(this).find('video').get(0).play() 
});

jQuery(document).on('mouseout', '.wp-video', function(){ 
  jQuery(this).find('video').get(0).pause() 
});
© www.soinside.com 2019 - 2024. All rights reserved.