我最近制作了一个javascript游戏,然而,它拒绝使用手机和iPad ......
有没有办法知道用户是否使用PC,以便我可以阻止移动用户尝试使用它?
答案 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.
}