css3アニメーションのやり方を学んでいます。このボックスが下に移動するときにフェードインするにはどうすればよいですか?
例: http://jsfiddle.net/RtWTN/1/
<!DOCTYPE html>
<html>
<head>
<style>
div
{
width: 100px;
height: 100px;
background: red;
position: relative;
animation: mymove 3s ease-out forwards;
animation-iteration-count: 3;
}
@keyframes mymove
{
from { top: 0px;}
to { top: 200px;}
}
</style>
</head>
<body>
<div></div>
</body>
</html>