我遇到了問題。我想要一個圖像出現在隨機高度。 這是編碼:jQuery的隨機高度
$("#duck").css({
#duck{ top: Math.floor((Math.random()*100)+1);%; }
});
有人能告訴我什麼,我需要改變嗎?
我遇到了問題。我想要一個圖像出現在隨機高度。 這是編碼:jQuery的隨機高度
$("#duck").css({
#duck{ top: Math.floor((Math.random()*100)+1);%; }
});
有人能告訴我什麼,我需要改變嗎?
你可以試試:
function getRandom(min, max) {
return min + Math.floor(Math.random() * (max - min + 1));
}
setInterval(function(){
var randomtop=(getRandom(0,($(window).height()-$("#duck").height())+"px");
$("#duck").css("top",randomtop);
},5000)
這不是如何'的.css()'作品。重新閱讀[文檔](http://api.jquery.com/css/)。 –
我對此很新,我正在做這個項目以獲得更多的經驗。我應該如何使用它? – Thomas
'$(「#duck」)。height(Math.floor((Math.random()* 100)+1))' – adeneo