所以我需要在我的html页面中包含javascript和jquery,以检查访问者是否使用移动浏览器,并根据相应的情况显示不同大小的视频。
我已经尝试了几种方法,但还没有找到真正有效的方法。
我需要的是:
if (isMobile()) {
//display larger
else {
//display smaller
}
有人可以帮忙吗?
答案 0 :(得分:1)
if (!('ontouchstart' in window)) {
// is desktop
elVideo.src= 'desktop.mp4';
} else {
// is mobile
elVideo.src= 'mobile.mp4';
}
答案 1 :(得分:0)
您可以像这样检测
if(jQuery.browser.mobile) { //code to be executed when device is mobile } else { //code to be executed when device is not mobile }