Показать сообщение отдельно
  #1 (permalink)  
Старый 07.07.2018, 18:25
Новичок на форуме
Отправить личное сообщение для Romfo Посмотреть профиль Найти все сообщения от Romfo
 
Регистрация: 07.07.2018
Сообщений: 3

Рандомный выбор цвета
Здравствуйте, помогите плиз.

нужно чтоб цвета выводились рандомно

<html>
<head>
    <meta charset="utf-8">
   
    </head>
   <style>#slider{width: 100%; height: 100%;}</style>

	<body>

	<div id="slider"></div>

	<script>
var vremya=prompt("Какую задать скорость 1000=1секунда",1000)
	window.onload = function () {

	    var obj = {

	        colors: [],

	        position: 0,

	        get color() {

	            if (this.position == this.colors.length) this.position = 0;

	            return this.colors[this.position ++];

	        },

	        set color(arg) {

	            this.colors = arg;

	        }

	    };

	    obj.color = ['red', 'green', 'blue', 'yellow', 'black'];

	    setInterval(function () {

	        document.getElementById('slider').style.backgroundColor = obj.color;

	    }, vremya);

	};

	</script>

	</body>
</html>
Ответить с цитированием