假设我有三个未知高度的 div,其中一个具有使用 CSS 关键帧动画的动画背景颜色(请参阅http://css-tricks.com/color-animate-any-shape-2)
@-webkit-keyframes super-rainbow {
0% { background: #ffff00; }
20% { background: #ffcd00; }
40% { background: #c3d74b; }
60% { background: #c3d7d7; }
80% { background: #ffc39b; }
100% { background: #ffff00; }
}
@-moz-keyframes super-rainbow {
0% { background: #ffff00; }
20% { background: #ffcd00; }
40% { background: #c3d74b; }
60% { background: #c3d7d7; }
80% { background: #ffc39b; }
100% { background: #ffff00; }
}
现在,还有另外两个具有白色背景的 div。在悬停时,我希望那些白色 div 也具有与永久颜色动画同步的动画背景颜色。我知道不支持本机同步(请参阅如何跨多个元素同步 CSS 动画?)。
我的第一种方法是让三个 div 都具有动画背景颜色,并用相对定位的白色 div 覆盖其中两个。在悬停时,那些白色的 div 会变得透明并显示带有动画背景的 div(参见http://jsfiddle.net/Vzq4B)
#permanent {
height: 100px;
margin-bottom: 15px;
width: 100%;
-webkit-animation: super-rainbow 5s infinite linear;
-moz-animation: super-rainbow 5s infinite linear;
}
#hover {
position: relative;
top: -115px;
margin-bottom: -100px;
height: 100px;
width: 100%;
background: #fff;
}
#hover:hover {
background-color: transparent;
}
但是,这种方法只有在我知道元素的高度时才有效,因为内容是可变的,所以我不知道。
对于未知高度的div,还有哪些其他方法可以实现这种效果?