根据显示器分辨率更改网站的全部内容

发布于 2024-08-13 08:37:10 字数 152 浏览 3 评论 0原文

在我的网站中,我根据查看者显示器的分辨率应用样式表。通过在 javascript 中使用 screen.width 我做到了这一点。但现在我怀疑我是否可以使用相同的技术根据分辨率来更改网站的全部内容,即,对于更高分辨率,内容更多,而对于更小,内容更少。或者您建议我使用其他技术来做到这一点。

In my site I am applying a stylesheet depending upon the resolution of the viewer's monitor. By using screen.width in javascript i do this. But now I have a doubt that can I use the same technique to change the whole content of the site depending upon the resolution, i.e, for higher resolutions more contents and for lesser, fewer. Or you please suggest me some other technique to do this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

草莓酥 2024-08-20 08:37:10

您可以检测分辨率并使用它来将类应用到页面主体,并使用它来告诉 CSS 显示/隐藏某些列。如果您让我知道您正在使用哪个框架/没有框架,我可以提供示例代码。

这是纯 JavaScript 中的非常基本的示例:

window.onload = function(){
 var resolution = 'res'+screen.width;
 document.getElementsByTagName('body')[0].className= resolution;
}

这还有一个优点,即无论 JavaScript 是否启用,页面都将始终显示。如果启用了 JavaScript,您可以根据分辨率定制页面,如果没有启用,用户仍然会看到您的内容。

You could detect the resolution and use this to apply a class to the body of your page and use this to tell CSS to show/hide certain columns. I can provide sample code if you let me know which framework / no framework you're working with.

Here is reallly basic example in plain javascript:

window.onload = function(){
 var resolution = 'res'+screen.width;
 document.getElementsByTagName('body')[0].className= resolution;
}

This also has the advantage that a page will always display regardless of whether JavaScript is enabled or not. If JavaScript is enabled you can tailor the page to the resolution, if not the user will still see your content.

提笔书几行 2024-08-20 08:37:10

让初始页面加载返回一个空容器并执行 ajax 调用以填充内容。 ajax 调用可以将分辨率作为参数传递,以便您可以相应地返回适当的内容。

Have your initial page load return an empty container and execute an ajax call that will populate it with the content. The ajax call can pass the resolution as a parameter so you can return the appropriate content accordingly.

山色无中 2024-08-20 08:37:10

由于您已经根据屏幕宽度提供备用样式表,因此您只需将给定样式表不需要的内容设置为 display:none

As you're already serving alternate stylesheets based on the screen width, you can just set the content that you don't want for that given stylesheet to display:none.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文