监听页面播放器 JQ
(function ($) {
$(document.body).on('mousemove scroll', function () {
var fun = function (event) {
$('audio,video').each(function (index, item) {
if (item !== event.target) {
item.pause();
}
});
}
$('audio,video').off('playing', fun);
$('audio,video').on('playing', fun);
});
}($));

浙公网安备 33010602011771号