Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
该站点基于 jquery 手风琴。当我单击手风琴中的第一个链接(啁啾...)时,小鸟图像的一部分消失了一秒钟然后重新出现。你知道为什么吗?
http://imip.rvadv.com/index2.html#home
它正在消失,因为动画将 anoverflow: hidden;应用于它正在制作动画的容器。
overflow: hidden;
给我一秒钟,我看看能不能帮你解决。
...
好的,我修复它的方法是将鸟图像作为背景#wrapper
#wrapper
想到了更好的办法。
更改#wrapperto的宽度并为您的手风琴项目920px添加左右填充(我们添加到总宽度的 60px 的一半)。这样,您的鸟图像将包含在其中,因此不会被溢出将其在动画中切断。li30pxli
920px
li
30px
注意:动画有点偏离,发生了一些奇怪的跳动,但出于此目的,我忽略了这一点,只是研究了如何使鸟图像不被切断。
:)