我的网站上有一个动画,当悬停在时来自 width: 100px to 800px
。
但是当悬停时,它只会进入正常位置而没有动画。
我怎么能得到它,所以动画会像悬停时那样重新悬停?
我只找到过渡的解决方案,但我需要它用于动画。
<div id="blackbox"/>
<div id="blacktxt">
Navigation
</div>
答案 0 :(得分:9)
为什么不使用转场而不是动画?的 Working jsFiddle 强>
#blackbox {
background: black;
width: 100px;
height: 80px;
color: white;
text-align: center;
font-family: Times;
font-size: 20px;
position: fixed;
left: 0px;
bottom: 100px;
opacity: 0.5;
margin-bottom: 10px;
transition: all 2s; /* Add this transition */
}
#blackbox:hover { /* Apply the new design on hover */
opacity: 0.8;
width: 800px;
}
#blacktxt {
margin-top: 10px;
height: 60px;
transition: opacity 0.5s, width 5s;
position: absolute;
font-family: cursive;
cursor: default;
}
#blacktxt:hover {
opacity: 0;
}
答案 1 :(得分:0)
我为此编写了jQuery Reversible插件。它与CSS过渡的主要优点是它适用于IE9和旧版浏览器。