data () {
return {
senceurl:“https://www.cdkj.net/ctcl-vr/42280210001/360VR/index.html?scene_id=37168149”,
// https://www.cdkj.net/ctcl-vr/42280210001/360VR/index.html?scene_id=37168149
isshowsence:true,
}
},
设置嵌入的frame样式:
mounted(){
/**
* iframe-宽高自适应显示
*/
function changeMobsfIframe(){
const mobsf = document.getElementById(‘mobsf’);
const deviceWidth = document.body.clientWidth; //客户端宽度
const deviceHeight = document.body.clientHeight; //
mobsf.style.width = (Number(deviceWidth)-120) + ‘px’; //数字是页面布局宽度差值
mobsf.style.height = (Number(deviceHeight)-80) + ‘px’; //数字是页面布局高度差
}
changeMobsfIframe()
window.onresize = function(){
changeMobsfIframe()
}
},