作为网页开发者我想知道是否有任何方式我可以知道用户监视器的长宽比(使用PC或Mac的人)。我想根据屏幕大小和宽高比将不同的页面(就其页面布局而言)转发给不同的用户。这有可能吗?
答案 0 :(得分:2)
为什么不retrieve their desktop size并自己找到比率?
var ratio = screen.width / screen.height;
if (ratio == (4/3)) {
// 4:3 ratio
} else if (ratio == (3/2)) {
// 3:2
} else if (ration == (16/9)) {
// 16:9
} /* etc. */