根据屏幕分辨率获取图像

发布于 2024-10-15 09:23:04 字数 284 浏览 2 评论 0原文

可能的重复:
如何使用 PHP 获取用户的屏幕分辨率

你好,

是是否可以获取用户的屏幕分辨率(也许通过php),然后调用if函数在javascript中设置与该分辨率相关的图像路径?

谢谢萨米

Possible Duplicate:
how to get user's screen resolution with PHP

Hy there,

is it possible to get the screen resolution of the user (maybe by php) and than call an if function to set up an image path in javascript related to this resolution?

Thx Sammy

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

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

发布评论

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

评论(1

夜吻♂芭芘 2024-10-22 09:23:04

PHP 不知道用户的屏幕分辨率,但您当然可以使用 Javascript 来检测它。例如,像下面这样的东西?

<script type="text/javascript">
  function setImageSrcBasedOnResolution()
  {
    document.getElementById("myImage").src="dynamicResolutionImage.php?size="
      + window.screen.width + "x" + window.screen.height;
  }

</script>

<body onLoad="setImageSrcBasedOnResolution()">
  <img id="myImage" src="temporaryLoadingImage.png" />
</body>

其中dynamicResolutionImage.php是一些生成给定大小的图像的脚本。

PHP doesn't know about the user's screen resolution, but you can of course use Javascript to detect it. Something like the following, for instance?

<script type="text/javascript">
  function setImageSrcBasedOnResolution()
  {
    document.getElementById("myImage").src="dynamicResolutionImage.php?size="
      + window.screen.width + "x" + window.screen.height;
  }

</script>

<body onLoad="setImageSrcBasedOnResolution()">
  <img id="myImage" src="temporaryLoadingImage.png" />
</body>

Where dynamicResolutionImage.php is some script that generates an image with the given size.

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