背景イメージが変化するたびに、私はそれを体を覆う必要があります。私はbackground-size: cover
を使用していますが、動作していないようです。background-size:cover;プロパティ
body {
position: relative;
margin-top: 60px;
background-color: #000;
font-family: 'Roboto Slab', serif;
background: url(https://i.ytimg.com/vi/lECC6eQhnZo/maxresdefault.jpg);
background-repeat: no-repeat;
background-position: center center;
background-atachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
transition: background 1s;
、ここでは、画像を変更しているjQueryの:画像がアレイ(オブジェクト)に格納され
$("body").css("background", objects[newNum].img);
。
CodePen:http://codepen.io/Chantun/pen/WxXaGy?editors=0010
ありがとう!それは簡単でした。 – Chantun