摘要: 1 window.onresize = function (ev) { 2 console.log('尺寸发生改变!'); 3 }; 4 5 window.addEventListener('resize', function (ev) { 6 console.log('尺寸发生改变!'); 7 }); 1 /* 2 当屏幕的宽度>=960时,页面的背景... 阅读全文
posted @ 2019-07-19 00:24 疏影横斜水清浅 阅读(560) 评论(0) 推荐(0) 编辑
摘要: 1 client: function() { 2 if(window.innerWidth !== null){ // 最新的浏览器 3 return { 4 "width": window.innerWidth, 5 "height": windo... 阅读全文
posted @ 2019-07-19 00:08 疏影横斜水清浅 阅读(376) 评论(0) 推荐(0) 编辑