嘿,我是新來編碼和有一個任務,我需要包括隨機顏色選擇器的背景。顏色是紅色,綠色,黃色和藍色。我一直在研究和玩弄它,但我仍然堅持不懈。任何幫助告訴我如何做到這一點將不勝感激。謝謝:)從數組中選擇隨機背景顏色。 Javascript/html
-2
A
回答
0
使用jQuery來定位css屬性。
color = ["red", "green", "yellow", "blue"];
var randomNum = Math.floor(Math.random() * color.length);
console.log(randomNum);
var randomColor = color[randomNum];
$("body").css("background-color", randomColor);
這可能對你有幫助。
+0
OP要求JavaScript不是JQuery – Weedoze
0
這裏是JavaScript部分
var colors = ["red", "green", "yellow", "blue"]; //Array of colors
var randomColor = colors[Math.floor(Math.random() * colors.length)]; //Pick one randomly
document.body.style.background = randomColor; //Apply the color on the body background
相關問題
- 1. 隨機顏色背景
- 2. 從數組中挑選隨機顏色
- 3. reveal.js背景顏色選擇
- 4. UITextField選擇背景顏色
- 5. QTableView - 選擇背景顏色
- 6. 如何從Java中的顏色數組中隨機選擇一種顏色?
- 7. jQuery的:隨機背景顏色
- 8. MonoTouch的隨機背景顏色
- 9. 陣列的隨機背景顏色 - PHP
- 10. 隨機背景顏色變化
- 11. 組背景顏色
- 12. 在java中選擇隨機顏色
- 13. JQuery隨機背景顏色和顏色,在2 div的
- 14. 隨機顏色從顏色
- 15. 如何從顏色數組中隨機設置jbutton顏色?
- 16. WPF TabItem選擇時背景顏色?
- 17. Android LinearLayout選擇器背景顏色
- 18. 更改菜單背景顏色選擇
- 19. UIDate選擇器的背景顏色
- 20. 更改ListView的背景選擇顏色?
- 21. Laravel表::選擇更改背景顏色
- 22. 背景顏色 - 不能看到選擇
- 23. 點擊選擇背景顏色
- 24. 更改背景顏色選擇
- 25. 更改背景顏色選擇
- 26. 選擇自定義Datagridviewcolumn背景顏色
- 27. 設置選擇jbutton的背景顏色
- 28. Android GridView選擇背景顏色
- 29. 如何硒選擇背景顏色
- 30. html css - 圖片選擇背景顏色
[從陣列獲得的隨機值(的可能的複製http://stackoverflow.com/questions/4550505/getting-random-value-from-an-array ) –