纵有疾风起
人生不言弃

js 判断 iPhone X、iPhone XS、iPhone XS Max、iPhone XR

// iPhone X、iPhone XS
var isIPhoneX = /iphone/gi.test(window.navigator.userAgent) && window.devicePixelRatio && window.devicePixelRatio === 3 && window.screen.width === 375 && window.screen.height === 812;
// iPhone XS Max
var isIPhoneXSMax = /iphone/gi.test(window.navigator.userAgent) && window.devicePixelRatio && window.devicePixelRatio === 3 && window.screen.width === 414 && window.screen.height === 896;
// iPhone XR
var isIPhoneXR = /iphone/gi.test(window.navigator.userAgent) && window.devicePixelRatio && window.devicePixelRatio === 2 && window.screen.width === 414 && window.screen.height === 896;

未经允许不得转载:起风网 » js 判断 iPhone X、iPhone XS、iPhone XS Max、iPhone XR
分享到: 生成海报

评论 抢沙发

评论前必须登录!

立即登录