无论如何,只有当用户在浏览器视口中有视频(或视频的一定百分比)时,才会自动播放 HTML5 视频?
问问题
50056 次
4 回答
31
简单来说
假设我们的浏览器窗口W
当前滚动到 y 位置scrollTop
并且scrollBottom
V1
我们的视频在其位置处于或V2
低于快照时将不会播放。
代码详情
$(document).ready(function() {
// Get media - with autoplay disabled (audio or video)
var media = $('video').not("[autoplay='autoplay']");
var tolerancePixel = 40;
function checkMedia(){
// Get current browser top and bottom
var scrollTop = $(window).scrollTop() + tolerancePixel;
var scrollBottom = $(window).scrollTop() + $(window).height() - tolerancePixel;
media.each(function(index, el) {
var yTopMedia = $(this).offset().top;
var yBottomMedia = $(this).height() + yTopMedia;
if(scrollTop < yBottomMedia && scrollBottom > yTopMedia){ //view explaination in `In brief` section above
$(this).get(0).play();
} else {
$(this).get(0).pause();
}
});
//}
}
$(document).on('scroll', checkMedia);
});
于 2014-10-22T13:03:57.510 回答
20
希望这会有所帮助,但之前已经回答过了
var videos = document.getElementsByTagName("video"),
fraction = 0.8;
function checkScroll() {
for(var i = 0; i < videos.length; i++) {
var video = videos[i];
var x = video.offsetLeft, y = video.offsetTop, w = video.offsetWidth, h = video.offsetHeight, r = x + w, //right
b = y + h, //bottom
visibleX, visibleY, visible;
visibleX = Math.max(0, Math.min(w, window.pageXOffset + window.innerWidth - x, r - window.pageXOffset));
visibleY = Math.max(0, Math.min(h, window.pageYOffset + window.innerHeight - y, b - window.pageYOffset));
visible = visibleX * visibleY / (w * h);
if (visible > fraction) {
video.play();
} else {
video.pause();
}
}
}
window.addEventListener('scroll', checkScroll, false);
window.addEventListener('resize', checkScroll, false);
于 2014-04-03T08:25:33.613 回答
8
您可以使用window.pageXOffset和window.pageYOffset来检查浏览器窗口垂直和水平滚动的距离。使用这些window.innerWidth
和innerHeight
一些基本的几何数学来计算可见页面与视频本身的重叠程度。将这一切都放在一个函数中,您可以将其附加到窗口对象上的scroll
andresize
事件,以便在每次滚动更改时运行检查。
这是一些示例代码:
var video = document.getElementById('video'),
info = document.getElementById('info'),
fraction = 0.8;
function checkScroll() {
var x = video.offsetLeft,
y = video.offsetTop,
w = video.offsetWidth,
h = video.offsetHeight,
r = x + w, //right
b = y + h, //bottom
visibleX,
visibleY,
visible;
if (window.pageXOffset >= r ||
window.pageYOffset >= b ||
window.pageXOffset + window.innerWidth < x ||
window.pageYOffset + window.innerHeight < y
) {
info.innerHTML = '0%';
return;
}
visibleX = Math.max(0, Math.min(w, window.pageXOffset + window.innerWidth - x, r - window.pageXOffset));
visibleY = Math.max(0, Math.min(h, window.pageYOffset + window.innerHeight - y, b - window.pageYOffset));
visible = visibleX * visibleY / (w * h);
info.innerHTML = Math.round(visible * 100) + '%';
if (visible > fraction) {
video.play();
} else {
video.pause();
}
}
window.addEventListener('scroll', checkScroll, false);
window.addEventListener('resize', checkScroll, false);
//one time at the beginning, in case it starts in view
checkScroll();
//as soon as we know the video dimensions
video.addEventListener('loadedmetadata', checkScroll, false);
和一个工作示例。
此代码假定一个非常简单的页面布局。如果您的视频绝对定位在另一个设置了“位置:相对”的元素内,那么您需要做更多的工作来计算视频的正确位置。(如果视频已使用 CSS 变换移动,情况也是如此。)
于 2013-03-13T21:35:27.530 回答
6
这个场景有一个新的 API,叫做Intersection_Observer_API,Chrome 51+ 和 Edge 15+ 都支持。
var options = {
root: document.querySelector('.scroll-container'),
rootMargin: '0px',
threshold: 1.0 // trigger only when element comes into view completely
};
var ob = new IntersectionObserver((entries, observer) => {
entries[0].target.classList.toggle('red');
}, options);
// observe all targets, when coming into view, change color
document.querySelectorAll('.target').forEach((item) => {
ob.observe(item);
});
这是一个简单的演示: https ://codepen.io/hectorguo/pen/ybOKEJ
于 2017-04-21T03:38:19.890 回答