jquery fadeTo边框问题

发布于 2024-10-07 01:23:09 字数 152 浏览 5 评论 0原文

当将元素淡入0透明度时,jquery的fadeTo命令不会影响该元素的边框。有什么办法可以解决这个问题吗?我创建了一个演示: http://jsfiddle.net/V57EF/

while fading an element to 0 transparency, the fadeTo command of jquery does not affect the border of this element. is there any solution to solve this problem? i created a demo on: http://jsfiddle.net/V57EF/

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

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

发布评论

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

评论(1

悍妇囚夫 2024-10-14 01:23:09

来自 http://api.jquery.com/animate/

简写 CSS 属性(例如边距、
不支持背景、边框)。

fadeTo 的行为似乎与 animate 类似。

如果您希望隐藏边框,可以使用回调将其设置为 0 ( http://jsfiddle.net/ V57EF/14/ ):

$('td').fadeTo(1000, 0, function(e) { $(this).css({border: "0"}); });

看起来很丑,但我想不出还有什么更好的 atm 了。

From http://api.jquery.com/animate/ :

Shorthand CSS properties (e.g. margin,
background, border) are not supported.

fadeTo seems to be similar in behavior to animate.

If you want the border to hide, you could use callback to set it to 0 ( http://jsfiddle.net/V57EF/14/ ):

$('td').fadeTo(1000, 0, function(e) { $(this).css({border: "0"}); });

Looks ugly, but I can't think of anything better atm.

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