柔性线描边模糊、弯曲或不直

发布于 2024-10-10 21:19:38 字数 231 浏览 4 评论 0原文

问题:使用 mxml 的 Flex 中的线条看起来不直!?

<s:Line width="100%" height="2">
    <s:stroke>
        <s:SolidColorStroke color="0xbababa" />
    </s:stroke>
</s:Line>

problem: Line in flex using mxml that doesn't appear to be straight!?

<s:Line width="100%" height="2">
    <s:stroke>
        <s:SolidColorStroke color="0xbababa" />
    </s:stroke>
</s:Line>

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

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

发布评论

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

评论(1

舂唻埖巳落 2024-10-17 21:19:38

解决方案:确保为笔画赋予权重并删除高度属性!

<s:Line top="20" xFrom="0" xTo="{this.width}">
<s:stroke>
<s:SolidColorStroke color="0xbababa" weight="1" />
</s:stroke>
</s:Line>

solution: make sure to give the stroke a weight and remove the height property!

<s:Line top="20" xFrom="0" xTo="{this.width}">
<s:stroke>
<s:SolidColorStroke color="0xbababa" weight="1" />
</s:stroke>
</s:Line>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文