Типы нанесения
Гравировка Тампопечать УФ печать
Артикул
3050.01
Материал
Металл
В упаковке
6x50=500шт
Вес одной штуки
25 г
Вес упаковки
300шт: 7,5 кг
Размер товара
14,1x1,1 см
Размер упаковки
31x28x12 см
Объём упаковки
0.01 м 3
..
// 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;
}