.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()も試してみましたが、残念ながら画像なので見栄えがよくありません。
ありがとう!