监听页面播放器 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);
});
}($));
posted @ 2020-11-24 13:47  虾仁炒饭🦐  阅读(67)  评论(0)    收藏  举报