提交 fc4b69de authored 作者: lihuihui's avatar lihuihui

修改首页视频适配

上级 6d334e38
...@@ -24,7 +24,7 @@ export default { ...@@ -24,7 +24,7 @@ export default {
const height = document.documentElement const height = document.documentElement
? document.documentElement.clientHeight ? document.documentElement.clientHeight
: window.innerHeight : window.innerHeight
this.heightdy = height this.heightdy = this.isTerminal() === 'Mobile' ? '700' : height
}, },
watchScroll() { watchScroll() {
this.scrollTop = this.scrollTop =
...@@ -47,6 +47,12 @@ export default { ...@@ -47,6 +47,12 @@ export default {
if (this.dyScroll) { if (this.dyScroll) {
this.dyScroll(present, this.scrollTop) this.dyScroll(present, this.scrollTop)
} }
},
isTerminal() {
const detectDeviceType = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)
? 'Mobile'
: 'Desktop'
return detectDeviceType
} }
}, },
created() { created() {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论