这段代码可以显示用户浏览器是否为移动端
!!navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)
返回值为布尔值
判断移动端横竖屏
orient () {
if (window.orientation === 90 || window.orientation === -90) {
console.log('横屏')
} else if (window.orientation === 0 || window.orientation === 180) {
console.log('竖屏')
}
}