如何知道网站上的设备?

时间:2015-07-05 09:12:06

标签: mobile responsive-design web pc

我最近制作了一个javascript游戏,然而,它拒绝使用手机和iPad ......

有没有办法知道用户是否使用PC,以便我可以阻止移动用户尝试使用它?

1 个答案:

答案 0 :(得分:-1)

您可以对响应式用户界面使用媒体查询,并查看以下代码:

 // For Smartphone
            if (window.innerWidth < 600)
            {
                // TODO-- for the SmartPhone
            }

            // For Tablet
            else if(window.innerWidth > 600 && window.innerWidth < 768)
            {
                //TODO-- for the Tablet.
            }

            // For Desktop
            else if(window.innerWidth > 768)
            {
                //TODO -- for the Desktop.
            }