如何阻止 Playbook 仅显示正方形而不是图像?

发布于 2024-12-28 11:53:47 字数 127 浏览 0 评论 0原文

我目前在 Playbook 上使用 Phonegap 应用程序时遇到问题。它由一个按钮和一个在屏幕上移动的圆圈组成。该圆圈带有黑色边框,但剧本将其渲染为红色方块。有谁知道如何解决这个问题?我尝试更改图像类型并添加背景颜色标签,但这不起作用。

I'm currently having a of problem with my Phonegap application on Playbook. It consists of a button and a circle that moves across the screen. The circle is re with a black border, but the playbook renders it as just a red square. Does anyone know of how to fix this? I've tried changing the image type and adding in a background color tag, but that didn't work.

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

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

发布评论

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

评论(1

辞慾 2025-01-04 11:53:47

您可以使用具有 css 3 属性的简单 div 来创建不带图像的简单圆圈。

background: red;
width: 10em;
height: 10em;
-moz-border-radius: 5em;
-webkit-border-radius: 5em;
border: solid 1px #000;
border-radius: 5em;

You can use a simple div with css 3 properties to create a simple circle without images.

background: red;
width: 10em;
height: 10em;
-moz-border-radius: 5em;
-webkit-border-radius: 5em;
border: solid 1px #000;
border-radius: 5em;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文