jQuery 中的文本动画出现问题
我有一些文本链接,可以使用 CSS 改变 hover
上的颜色,并使用 jQuery 向左移动。
大多数时候它工作得很好,但是当文本以大写“A”开头时,它会在文本字符后面留下奇怪的痕迹。这种情况发生在 webkit 浏览器中(但不是 Firefox)。
有什么方法可以消除这个故障吗?
I have text links which change colour on hover
with CSS and shift left with jQuery.
Most of the time it works fine, but when the text begins with a capital "A", say, it leaves a weird trail behind the text character. This happens in webkit broswers (but not Firefox).
You can see it in action with this jsFiddle
Is there any way to get rid of this glitch?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
哇,我的第一感觉是对的:在侧面添加一个小填充,效果很好:
http://jsfiddle.net/k3vnd/1/
不知道如何解释,只是提醒错误来自编程背景。我认为这是内部 webkit 问题。
wow, my first feeling was right: add a small padding to the sides and it work fine:
http://jsfiddle.net/k3vnd/1/
Not sure how to explain it, just reminds bugs from programming background. I think it's internal webkit issue.
我不知道为什么这样做,但在链接周围放置少量填充似乎可以解决问题:
请参阅此处的工作原理: http://jsfiddle.net/jfriend00/LvT2h/
I don't know why it does that, but putting a small amount of padding around the link seems to solve the issue:
See it work here: http://jsfiddle.net/jfriend00/LvT2h/