jquery - lavalamp - 图像问题

发布于 2024-11-27 17:45:54 字数 281 浏览 1 评论 0原文

我有这个菜单,我在其中使用 jQuery lavalamp 插件,但我有一个问题。 我不在菜单中使用文本(对此进行了测试,工作正常),但我直接使用图像。

现在我的问题是,当您清除缓存(ctrl+f5,或当您第一次访问该网站时)时,lavalamp 不会调整为图像的完整宽度。

http://www.spiritus-design.be

你们知道一个好技巧吗?

干杯

I have this menu where I use the jQuery lavalamp plugin, but I have a problem.
I don't use text (tested this, works fine) in the menu, but instaid I use images.

Now my problem with that is that the lavalamp doesn't resize to the full width of the image when you clear your cache (ctrl+f5, or when you first visit the site).

http://www.spiritus-design.be

Do you guys know a good trick?

Cheerzz

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

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

发布评论

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

评论(2

不必了 2024-12-04 17:45:54

你可以尝试将 display:block 添加到图像中:

#menu ul li a img {
border: medium none;
margin-left: 15px;
display:block;

}

我不确定,希望它会有所帮助

you can try to add display:block to the image :

#menu ul li a img {
border: medium none;
margin-left: 15px;
display:block;

}

I am not sure, hopefully it will help

面如桃花 2024-12-04 17:45:54

初始化 lavaLamp 插件后,您必须执行类似的操作:

$('.back').width($('.current').children('a').children('img').outerWidth())

但由于某种原因,由于导航上的某些奇怪位置,它没有完全填充图像的宽度。

You would have to do something like this after you initialize the lavaLamp plugin:

$('.back').width($('.current').children('a').children('img').outerWidth())

But for some reason it's not completely filling the width of the image due to some weird position on the nav.

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