123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Document</title>
- </head>
- <body>
- <style>
- .light {
- width: 250px;
- height: 250px;
- margin-top: 15px;
- border-radius: 50%;
- }
- .trafficLightWrapper {
- display: flex;
- justify-content: space-between;
- }
- #trafficLightBlock,
- #predestrianTrafficLightBlock {
- display: flex;
- justify-content: center;
- flex-wrap: wrap;
- width: 300px;
- height: fit-content;
- border: 1px solid black;
- }
- </style>
- <div class="trafficLightWrapper">
- <div id="trafficLightBlock">
- <div id="" class="light green"></div>
- <div id="" class="light yellow"></div>
- <div id="" class="light red"></div>
- </div>
- <div id="predestrianTrafficLightBlock">
- <div id="" class="light green"></div>
- <div id="" class="light red"></div>
- <button id="stopButton">STOP</button>
- </div>
- </div>
- <script>
- const changeLightColor = (parent, light) => {
- parent.querySelector(`.${light}`).style.background = light;
- [...parent.querySelectorAll(`.light`)]
- .filter((el) => !el.classList.contains(light))
- .map((el) => (el.style.background = "none"));
- };
- const delay = (ms) => new Promise((ok) => setTimeout(() => ok(ms), ms));
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- </script>
- </body>
- </html>
|