LoginSignup
11
13

More than 5 years have passed since last update.

背景をエンドレスに動かす

Posted at

デモ:http://mo49.tokyo/qiita/20160324/moveBg.html

dom用意

html
<div class="bg_move"></div>

画像サイズと同じだけbackground-positionを動かす

css
.bg_move{
    background-image: url('bg.jpg');
    height: 500px;
    animation: moveBg 5s infinite linear;
}
@keyframes moveBg{
    0%    { background-position: 0 0; }
    100%  { background-position: -256px 256px; }
}
11
13
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
13