iPhone X是否是苹果公司首款全面屏设计的智能手机?
- 内容介绍
- 文章标签
- 相关推荐
本文共计74个文字,预计阅读时间需要1分钟。
javascriptif (/iphone/gi.test(navigator.userAgent) && screen.availWidth===375 && screen.availHeight===812) { alert('iPhoneX'); if (window.innerHeight==='375' && window.innerWidth==='812') { alert('水平摆放'); } else { alert('垂直'); }}
gistfile1.txtif (/iphone/gi.test(navigator.userAgent) && (screen.availWidth === 375) && (screen.availHeight === 812)) { alert('iPhoneX') if ((window.innerHeight == '375') && (window.innerWidth == '812')) { alert('水平摆放') } else { alert('垂直摆放') } }
本文共计74个文字,预计阅读时间需要1分钟。
javascriptif (/iphone/gi.test(navigator.userAgent) && screen.availWidth===375 && screen.availHeight===812) { alert('iPhoneX'); if (window.innerHeight==='375' && window.innerWidth==='812') { alert('水平摆放'); } else { alert('垂直'); }}
gistfile1.txtif (/iphone/gi.test(navigator.userAgent) && (screen.availWidth === 375) && (screen.availHeight === 812)) { alert('iPhoneX') if ((window.innerHeight == '375') && (window.innerWidth == '812')) { alert('水平摆放') } else { alert('垂直摆放') } }

