最近は CSS3 アニメーションにハマってしまったので、今はそれで遊んでいます。しかし、残念ながら、bg 画像を下に配置する際に問題があります。
これは私が取り組んでいるコードです:
body {
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 20px;
color: #333333;
background: #A9D0F5 url("../image/bg-clouds.png") repeat-x fixed center bottom;
animation: animatedBackground 40s linear infinite;
-ms-animation: animatedBackground 40s linear infinite;
-moz-animation: animatedBackground 40s linear infinite;
-webkit-animation: animatedBackground 40s linear infinite;
/*background-color: #008bcf;*/
}
@-keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 100% 0; }
}
@-webkit-keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 100% 0; }
}
@-ms-keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 100% 0; }
}
@-moz-keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 100% 0; }
}
ここで何が問題になっているようですか?何か案は?ありがとう。
これは jsfiddle です: http://jsfiddle.net/Rex2E/