使用 $linkImg 变量向图标添加圆角蒙版

发布于 2024-10-20 08:29:12 字数 1104 浏览 3 评论 0原文

我对此并不了解,所以如果我的问题措辞不正确,请原谅我。

需要将四个圆角应用于使用变量 $linkImg 通过自定义 WordPress 插件自动拉取的 119 x 119 App Store 图标 png。

    $strHtml = "
<div style='border: solid 1px #00b7f3; background-color: #f8f8f8; width: 656px; height: 186px; padding: 0px; float: left; margin-top: 4px;'>
 <div style='float: left; width: 175px; margin: 0px; text-align: center; padding-left: 10px; padding-top: 15px;'>
  <img src='$linkImg' width='119' height='119' style='margin: 0px; padding: 15px;'/>
 </div>
</div>
";

有什么想法吗? (顺便说一句,第一篇文章)

编辑 2 - 这似乎没有任何作用,我是否遗漏了一些明显的东西?

    $strHtml = "
<div style='border: solid 1px #00b7f3; background-color: #f8f8f8; width: 656px; height: 186px; padding: 0px; float: left; margin-top: 4px; border-top-left-radius: 50px 50px;'>
 <div style='float: left; width: 175px; margin: 0px;  text-align: center; padding-left: 10px; padding-top: 15px;'>
  <img src='$linkImg' width='119' height='119' style='margin: 0px; padding: 15px;'/>
 </div>
</div>
";

Not as savvy on this as I'd like to be, so forgive me if my question is not phrased correctly.

Need to apply four rounded corners to a 119 x 119 App Store icon png auto pulled via a custom WordPress plugin using the variable $linkImg.

    $strHtml = "
<div style='border: solid 1px #00b7f3; background-color: #f8f8f8; width: 656px; height: 186px; padding: 0px; float: left; margin-top: 4px;'>
 <div style='float: left; width: 175px; margin: 0px; text-align: center; padding-left: 10px; padding-top: 15px;'>
  <img src='$linkImg' width='119' height='119' style='margin: 0px; padding: 15px;'/>
 </div>
</div>
";

Any ideas? (Btw, first post)

Edit 2 - This seems to do nothing, am I missing something obvious?

    $strHtml = "
<div style='border: solid 1px #00b7f3; background-color: #f8f8f8; width: 656px; height: 186px; padding: 0px; float: left; margin-top: 4px; border-top-left-radius: 50px 50px;'>
 <div style='float: left; width: 175px; margin: 0px;  text-align: center; padding-left: 10px; padding-top: 15px;'>
  <img src='$linkImg' width='119' height='119' style='margin: 0px; padding: 15px;'/>
 </div>
</div>
";

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

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

发布评论

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

评论(1

樱花细雨 2024-10-27 08:29:12

这是css的问题,不是php的问题。

如果无法链接外部 css 文件,请使用内联 css。

尝试 http://www.css3.info/preview/rounded-border 进行 CSS3 圆角角落。

http://www.devwebpro.com/25-rounded-corners -techniques-with-css/ 用于其他技巧。

*******编辑 ****
我正在使用 operamini,所以我无法阅读你的代码。另外,由于奇怪的 js 问题,我无法发表评论。

css3 的问题是并非所有浏览器都支持它,并且每个浏览器当前都不使用该标准。您需要找到 -moz- 特定和 -webkit- 特定版本。除非浏览器使用支持它的引擎,否则不能保证它可以工作。

This is an issue of css not php.

Use inline css if you cannot link an external css file.

Try http://www.css3.info/preview/rounded-border for Css3 rounded corners.

And http://www.devwebpro.com/25-rounded-corners-techniques-with-css/ for other hacks.

*******edit****
I am using operamini so I can't read your code. Also I can't post comments due to a wierd js issue.

The problem with css3 is it is not supported by all browsers and each browser currently does not use the standard. You need to find the -moz- specific and -webkit- specific versions. It isn't guaranteed to work unless the browser uses an engine which supports it.

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