0
В корзине пусто!

Закрыть

Связаться с нами

Наши контакты

РПК ПромомТехнологии

Екатеринбург, Восточная 56, 11-1

8 (800) 500-64-21‏‏

8 (343) 351-73-01 - Екатеринбург

пн-пт 10:00-18:00

info@pr-ekb.ru

Написать нам







Введите код, указанный на картинке:

   

// Reference the color shape that was drawn over the image const overlay = document.getElementById("product-shape33"); // Click on a color var el = document.getElementsByClassName("color33"); for (var i = 0; i < el.length; i++) { el[i].onclick = changeColor33; } function changeColor33(e) { // get the hex color let hex = e.target.getAttribute("data-hex"); // set the hex color overlay.style.fill = hex; }