美文网首页
Taro 判断是否是iphonex

Taro 判断是否是iphonex

作者: blossom_6694 | 来源:发表于2019-12-10 18:33 被阅读0次
    function testUA(str) {
        return navigator.userAgent.indexOf(str) > -1
    }
    
    function isIPhoneX() {
        if (isH5()) {
            return window.devicePixelRatio && window.devicePixelRatio === 3 && window.screen.width === 375 && testUA('iPhone')
        }
        const { model } = Taro.getSystemInfoSync()
        return model.search('iPhone X') != -1
    }
    

    相关文章

      网友评论

          本文标题:Taro 判断是否是iphonex

          本文链接:https://www.haomeiwen.com/subject/zknggctx.html