Flex 4.5.1 - 移动图像覆盖整个屏幕

发布于 2024-11-18 04:36:22 字数 72 浏览 3 评论 0原文

我想要一张图像必须覆盖整个屏幕或至少一侧,以便保持其纵横比。

考虑到不同的屏幕尺寸和 DPI,我该如何做到这一点?

I want to have an image that has to cover the entire screen or at least one of the sides so that it keeps its aspect ratio.

How do I do that considering the various screen sizes and DPI?

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

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

发布评论

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

评论(1

美人骨 2024-11-25 04:36:22
 FlexGlobals.topLevelApplication.screen 

返回屏幕矩形,并

 FlexGlobals.topLevelApplication.applicationDPI

返回应用程序的 DPI。

但在 Flex 中,您可以简单地将 s:Image 控件的宽度设置为视图的 100%,然后它将覆盖您的屏幕。 (并且不要设置高度,Flex 会为你计算出来)

 FlexGlobals.topLevelApplication.screen 

returns the screen rectangle, and

 FlexGlobals.topLevelApplication.applicationDPI

returns the DPI of the application.

But in Flex you can simply set an s:Image control's width to 100% of the view, then it will cover your screen. (and dont set the height, Flex will figure it out for you)

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