代码实例
代码语言:javascript复制function sleepcheckvideo(){
// alert('here is a function');
setTimeout(function() {
if(screen.width<768 ){
// alert("这是手机");
if(document.body.clientWidth>window.screen.width){
// alert("屏幕是横着放的");
if($(".lesson-content-text-body")){
alert('为了更好的用户体验,请将手机垂直放置浏览课程');
}
}else{
if($(".lesson-content-text-body")){
if($(".lesson-content-text-body iframe").attr("width")){
$(".lesson-content-text-body iframe").attr("width", 240);
$(".lesson-content-text-body iframe").attr("height",160);
}else{
sleepcheckvideo();
}
}
}
}else{
if($(".lesson-content-text-body")){
if($(".lesson-content-text-body iframe").attr("width")){
$(".lesson-content-text-body iframe").attr("width", 700);
$(".lesson-content-text-body iframe").attr("height",400);
}else{
sleepcheckvideo();
}
}
}
},500);
}