jquery fadeTo边框问题
当将元素淡入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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 http://api.jquery.com/animate/ :
fadeTo
的行为似乎与animate
类似。如果您希望隐藏边框,可以使用回调将其设置为 0 ( http://jsfiddle.net/ V57EF/14/ ):
看起来很丑,但我想不出还有什么更好的 atm 了。
From http://api.jquery.com/animate/ :
fadeTo
seems to be similar in behavior toanimate
.If you want the border to hide, you could use callback to set it to 0 ( http://jsfiddle.net/V57EF/14/ ):
Looks ugly, but I can't think of anything better atm.