admin管理员组文章数量:1341417
EXPLANATION: A customer of mine wants to have a background video running on his responsive website. However he would also like to remove it for tablet/mobile users. I know this can be done with media queries, but the video would still load as part of the DOM and that is what i would like to prevent.
QUESTIONS:
Can the video element be removed using JavaScript/jQuery from the DOM when it loads view-port at certain widths?
Can the same video be recovered when if the view port is manually increased in with? (i suspect this is a bad approach)
Will a video with "display:none;" still affect loading/battery time on a tablet/mobile ?
Thanks you for you assistance.
EXPLANATION: A customer of mine wants to have a background video running on his responsive website. However he would also like to remove it for tablet/mobile users. I know this can be done with media queries, but the video would still load as part of the DOM and that is what i would like to prevent.
QUESTIONS:
Can the video element be removed using JavaScript/jQuery from the DOM when it loads view-port at certain widths?
Can the same video be recovered when if the view port is manually increased in with? (i suspect this is a bad approach)
Will a video with "display:none;" still affect loading/battery time on a tablet/mobile ?
Thanks you for you assistance.
Share Improve this question asked Jul 7, 2014 at 11:05 user3812110user3812110 1111 gold badge1 silver badge6 bronze badges 1- 1 Wele to Stack Overflow. Please read Stack Overflow: How to ask and Jon Skeet's Question Checklist to find out how to ask a good question that will generate good useful, answers. – Our Man in Bananas Commented Jul 7, 2014 at 11:33
4 Answers
Reset to default 2See this answer to detect if you're on a mobile device.
Then, using this test, you can .hide()
your element using jQuery, or set its src
attribute to ""
, to be sure it's not downloading.
Based on mobile dimensions use $('video').remove()
. this will removes the DOM element from webpage. so it will not render in html.
not sure if this might help but this snippet will stop video getting played on mobile devices also you can mute the audio here and it should show fallback img here.
const video = document.querySelectorAll('video')
video.forEach(data=>{
data.volume = 0 //mute audio
console.log(data);
if (window.innerWidth <= 768) {
data.autoplay=false; or //data.remove()
} else {
data.play();
}
})
You could also use css. This is much easier.
@media only screen
and (min-device-width: 320px)
and (max-device-width: 480px)
and (-webkit-min-device-pixel-ratio: 2) {
video {
display:none;
}
}
Then have an image with a negative z-index, that way when the video is not displayed, the image will appear.
本文标签: javascriptWhat is the best way to remove html5 video background for mobile usersStack Overflow
版权声明:本文标题:javascript - What is the best way to remove html5 video background for mobile users - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743612330a2510212.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论