Flex 4.5.1 - 移动图像覆盖整个屏幕
我想要一张图像必须覆盖整个屏幕或至少一侧,以便保持其纵横比。
考虑到不同的屏幕尺寸和 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
返回屏幕矩形,并
返回应用程序的 DPI。
但在 Flex 中,您可以简单地将 s:Image 控件的宽度设置为视图的 100%,然后它将覆盖您的屏幕。 (并且不要设置高度,Flex 会为你计算出来)
returns the screen rectangle, and
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)