jQuery 界面鱼眼左对齐问题

发布于 2024-09-11 03:12:50 字数 202 浏览 1 评论 0原文

使用 jQuery 插件界面中的 groovy Fisheye 函数,并将“halign”设置为“left”,效果似乎适用于列表中的下一张图像,而不是鼠标实际悬停的图像。

链接

Using the groovy Fisheye function from the jQuery plugin Interface, and setting "halign" to "left" the effect seems to apply to the next image in the list rather than the one that the mouse is actually over.

link

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

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

发布评论

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

评论(1

倦话 2024-09-18 03:12:50

style.css

a.dock-item2 {
    display: block; 
    font: bold 12px Arial, Helvetica, sans-serif;
    color: #000; 
    bottom: 0px; 
    position: absolute;
    text-align: left;
    text-decoration: none;
    margin-left: -50px; /* remove this line */
}

Remove margin-left: -50px; from the style rules for a.dock-item2 in style.css.

a.dock-item2 {
    display: block; 
    font: bold 12px Arial, Helvetica, sans-serif;
    color: #000; 
    bottom: 0px; 
    position: absolute;
    text-align: left;
    text-decoration: none;
    margin-left: -50px; /* remove this line */
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文