jQuery 中的文本动画出现问题

发布于 2025-01-05 10:09:33 字数 273 浏览 1 评论 0原文

我有一些文本链接,可以使用 CSS 改变 hover 上的颜色,并使用 jQuery 向左移动。

大多数时候它工作得很好,但是当文本以大写“A”开头时,它会在文本字符后面留下奇怪的痕迹。这种情况发生在 webkit 浏览器中(但不是 Firefox)。

您可以通过这个 jsFiddle 看到它的运行情况

有什么方法可以消除这个故障吗?

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 技术交流群。

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

发布评论

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

评论(2

夜还是长夜 2025-01-12 10:09:33

哇,我的第一感觉是对的:在侧面添加一个小填充,效果很好:
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.

愁以何悠 2025-01-12 10:09:33

我不知道为什么这样做,但在链接周围放置少量填充似乎可以解决问题:

.links {

    position:absolute;
    left:20px;
    margin-top:25px;
    font-size:16.5pt;
    font-family: Garamond, Palatino, sans serif;
    font-style:italic;
    padding: 1px;    /* <=== added this line */

}​

请参阅此处的工作原理: 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:

.links {

    position:absolute;
    left:20px;
    margin-top:25px;
    font-size:16.5pt;
    font-family: Garamond, Palatino, sans serif;
    font-style:italic;
    padding: 1px;    /* <=== added this line */

}​

See it work here: http://jsfiddle.net/jfriend00/LvT2h/

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