码迷,mamicode.com
首页 > Web开发 > 详细

js动态添加iframe,自适应页面宽高

时间:2019-04-08 15:48:44      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:amp   ref   ||   tran   宽度   idt   osi   iframe   The   

function showIframe(url,w,h){
//添加iframe
var if_w = w;
var if_h = h;
$("<iframe width=‘" + if_w + "‘ height=‘" + if_h + "‘ id=‘iFrame‘ name=‘iFrame‘ style=‘position:absolute;z-index:4;‘ frameborder=‘no‘ marginheight=‘0‘ marginwidth=‘0‘ allowTransparency=‘true‘></iframe>").prependTo(‘body‘);
//iframe屏幕适应宽高设置
var st=document.documentElement.scrollTop|| document.body.scrollTop;//滚动条距顶部的距离
var sl=document.documentElement.scrollLeft|| document.body.scrollLeft;//滚动条距左边的距离
var ch=document.documentElement.clientHeight;//屏幕的高度
var cw=document.documentElement.clientWidth;//屏幕的宽度
var objH=$("#iFrame").height();//浮动对象的高度
var objW=$("#iFrame").width();//浮动对象的宽度
var objT=Number(st)+(Number(ch)-Number(objH))/2;
var objL=Number(sl)+(Number(cw)-Number(objW))/2;
$("#iFramee").css(‘left‘,objL);
$("#iFrame").css(‘top‘,objT);
$("#iFrame").attr("src", url)
}

showIframe(‘https://www.baidu.com/?tn=78040160_26_pg&ch=6‘,‘100%‘,‘100%‘);

js动态添加iframe,自适应页面宽高

标签:amp   ref   ||   tran   宽度   idt   osi   iframe   The   

原文地址:https://www.cnblogs.com/wcn123456/p/10670419.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!