背景画像のスクロール(css編)
cssアニメーションを使用
HTML
<body>
<h1>背景スクロール</h1>
<div class=”flame”></div>
</body>
CSS
.flame {
background-image:url(“../images/bg.png”);
background-position:center center;
background-size:1920px 420px ;/*画像の幅に設定*/
width:100%;
height:420px;/*画像の高さに設定*/
animation:infinitescroll 20s linear infinite;
}
@keyframes infinitescroll {
0% {background-position: 0 0;}
100% {background-position: -1920px 0;}/*画像の幅に設定*/
}