0
我應該如何把這個:jQuery的隨機背景位置
var numRand = Math.floor(Math.random()*10001)
$('.background').css({backgroundPosition: "0 (numRand)px"});
謝謝!
我應該如何把這個:jQuery的隨機背景位置
var numRand = Math.floor(Math.random()*10001)
$('.background').css({backgroundPosition: "0 (numRand)px"});
謝謝!
由於numRand
是一個變量,您需要使用+
來連接它:
$('.background').css({backgroundPosition: "0 " + numRand + "px"});