我有一个 .png 格式的横幅,我希望它在单击后从标题后面下降。这是我尝试过的,但在这种情况下,div 又回到了原来的位置。我希望它位于标题后面(隐藏)并在过渡后保持其位置:
<!DOCTYPE html>
<html>
<head>
<style>
div
{
width:100px;
height:100px;
background:red;
position:relative;
animation:myfirst 5s linear 2s;
-webkit-animation:myfirst 5s linear 2s;
}
@keyframes myfirst
{
0% {background:red; left:0px; top:0px;}
100% {background:green; left:0px; top:200px;}
}
@-webkit-keyframes myfirst /* Safari and Chrome */
{
0% {background:red; left:0px; top:0px;}
100% {background:green; left:0px; top:200px;}
}
</style>
</head>
<body>
<div></div>
</body>
</html>
我也尝试过使用 jQuery 的 slideDown() 但很遗憾,因为它是一个图像,它看起来不够好。
谢谢!