码迷,mamicode.com
首页 > 其他好文 > 详细

监听屏幕处理响应式操作

时间:2018-12-28 16:39:09      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:load   spl   loaded   auto   splay   this   size   handle   play   

 

 

data:{

isLeftHiden:false,

},

methods:{
togglemobileauto(ismobile){
this.isLeftHiden = ismobile
},
},

beforeMount () {
const {body} = document
const WIDTH = 768;
const RATIO = 3;
const handler = () => {
if (!document.hidden) {
let rect = body.getBoundingClientRect()
console.log(rect,7777);
let isMobile = rect.width - RATIO < WIDTH
this.togglemobileauto(isMobile)
}
}
document.addEventListener(‘visibilitychange‘, handler)
window.addEventListener(‘DOMContentLoaded‘, handler)
window.addEventListener(‘resize‘, handler);
},

监听屏幕处理响应式操作

标签:load   spl   loaded   auto   splay   this   size   handle   play   

原文地址:https://www.cnblogs.com/breakXu/p/10191202.html

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