Gomma colata
Gomma colata: pavimentazione antitrauma per parchi gioco personalizzabile La gomma colata è una soluzione innovativa per la pavimentazione antitrauma, ideale per parchi gioco e aree esterne. Grazie alle sue proprietà tecniche, questa pavimentazione antitrauma offre una protezione eccellente contro le cadute, garantendo sicurezza e comfort per chi utilizza le attrezzature da gioco. La sua versatilità consente di realizzare una pavimentazione antitrauma in gomma colata personalizzata, perfetta per ogni progetto. Gomma colata in EPDM Resistenza all'abrasione Elasticità Durezza Resistenza agli agenti atmosferici Resistenza chimica Gomma colata in EPDM + SBR Resistenza all'abrasione Elasticità Durezza Resistenza agli agenti atmosferici Resistenza chimica Personalizza la tua combinazione colori 100% EPDM 50% 50% EPDM + SBR .percent-buttons { display: flex; justify-content: space-between; gap: 4px; margin: 0 0 10px; } .percent-buttons button { flex: 1; padding: 4px; border: 1px solid #ccc; background: #f8f8f8; border-radius: 6px; cursor: pointer; font-size: 14px; } .percent-buttons button.active { background: #cccccc; } .custom-select { position: relative; display: inline-block; width: 100%; text-align: left; cursor: pointer; border: 1px solid rgba(12, 12, 12, 0.2); border-radius: 8px; padding: 4px 10px; margin: 0px 0 10px; background: #f8f8f8; } .custom-select .selected { display: flex; align-items: center; gap: 8px; justify-content: center; } .custom-select .color-box { width: 20px; height: 20px; border: 1px solid #ccc; border-radius: 4px; } .custom-select .options { display: none; position: absolute; top: 110%; left: 0; right: 0; background: #fff; border: 1px solid rgba(12, 12, 12, 0.2); border-radius: 8px; max-height: 274px; overflow-y: auto; z-index: 99; } .custom-select.active .options { display: block; } .custom-select .option { padding: 6px 10px; display: flex; align-items: center; gap: 8px; } .custom-select .option span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .custom-select .option:hover { background: #f0f0f0; } #dropdown4a .selected, #dropdown4b .selected { justify-content: center; user-select: none; } #dropdown4a .selected .color-box, #dropdown4b .selected .color-box { background: black !important; border: 1px solid #000 !important; } #dropdown4a, #dropdown4b { cursor: default; } document.addEventListener('DOMContentLoaded', () => { const percentages = [0, 25, 50, 75, 100]; function createPercentButtons(containerId, valueId, otherContainerId, otherValueId, canvasDrawFunc) { const container = document.getElementById(containerId); const valueDisplay = document.getElementById(valueId); const otherContainer = document.getElementById(otherContainerId); const otherValueDisplay = document.getElementById(otherValueId); percentages.forEach(p => { const btn = document.createElement('button'); btn.textContent = p + '%'; if (p === 50) btn.classList.add('active'); btn.addEventListener('click', () => { container.querySelectorAll('button').forEach(b => b.classList.remove('active')); btn.classList.add('active'); valueDisplay.textContent = p + '%'; const complementary = 100 - p; otherContainer.querySelectorAll('button').forEach(b => { if (b.textContent === complementary + '%') { b.classList.add('active'); } else { b.classList.remove('active'); } }); otherValueDisplay.textContent = complementary + '%'; canvasDrawFunc(p); }); container.appendChild(btn); }); } const colors = [ {name:'BEIGE - RAL 1001', hex:'#dbc096'}, {name:'OCHRE - RAL 1006', hex:'#e2a72e'}, {name:'SAND - RAL 1011', hex:'#dea165'}, {name:'WHITE - RAL 1013', hex:'#f0ede2'}, {name:'EGGSHELL - RAL 1015', hex:'#dcccb3'}, {name:'YELLOW - RAL 1018', hex:'#f4dd00'}, {name:'ORANGE - RAL 2008', hex:'#f37c20'}, {name:'FLAME RED - RAL 3000', hex:'#d1232a'}, {name:'RED TILE - RAL 3016', hex:'#b24b3b'}, {name:'RED FIRE - RAL 3020', hex:'#e23a39'}, {name:'PURPLE - RAL 4011', hex:'#a678b4'}, {name:'PINK - RAL 4010', hex:'#d83575'}, {name:'DARK PURPLE - RAL 5022', hex:'#3c3d85'}, {name:'TEAL - RAL 5001', hex:'#2d6f7d'}, {name:'DARK BLUE - RAL 5005', hex:'#214ba1'}, {name:'LIGHT BLUE - RAL 5012', hex:'#4a90cd'}, {name:'SKY BLUE - RAL 5015', hex:'#2e5da6'}, {name:'PASTEL BLUE - RAL 5024', hex:'#00b7e1'}, {name:'AQUA - RAL 6011', hex:'#4fa099'}, {name:'LIME - RAL 6017', hex:'#98cd71'}, {name:'RESEDA GREEN - RAL 6011', hex:'#738360'}, {name:'LIGHT GREEN - RAL 6017', hex:'#75b94c'}, {name:'PINE GREEN - RAL 6028', hex:'#245332'}, {name:'DARK GREY - RAL 7012', hex:'#383f41'}, {name:'LIGHT GREY - RAL 7040', hex:'#9fa3a4'}, {name:'SOFT GREY - RAL 7047', hex:'#d4d6d5'}, {name:'BROWN - RAL 8025', hex:'#694028'}, ]; function hexToRgb(hex) { return { r: parseInt(hex.slice(1,3),16), g: parseInt(hex.slice(3,5),16), b: parseInt(hex.slice(5,7),16) }; } function createDropdown(id, defaultHex, onChange, fixedText = null) { const container = document.getElementById(id); let selectedHex = defaultHex; const selected = document.createElement('div'); selected.className = 'selected'; const box = document.createElement('div'); box.className = 'color-box'; box.style.background = defaultHex; const text = document.createElement('span'); text.textContent = fixedText ? fixedText : colors.find(c => c.hex === defaultHex).name; selected.appendChild(box); selected.appendChild(text); container.appendChild(selected); if(fixedText){ container.style.pointerEvents = 'none'; return () => "#000000"; } const options = document.createElement('div'); options.className = 'options'; colors.forEach(c => { const opt = document.createElement('div'); opt.className = 'option'; const optBox = document.createElement('div'); optBox.className = 'color-box'; optBox.style.background = c.hex; const optText = document.createElement('span'); optText.textContent = c.name; opt.appendChild(optBox); opt.appendChild(optText); opt.addEventListener('click', () => { selectedHex = c.hex; box.style.background = c.hex; text.textContent = c.name; container.classList.remove('active'); if (onChange) onChange(); }); options.appendChild(opt); }); container.appendChild(options); selected.addEventListener('click', (e) => { e.stopPropagation(); document.querySelectorAll('.custom-select').forEach(sel => sel.classList.remove('active')); container.classList.toggle('active'); }); document.addEventListener('click', () => container.classList.remove('active')); return () => selectedHex; } function drawBlobs(ctx, w, h, col1, col2, ratio1) { ctx.clearRect(0, 0, w, h); for(let i=0; i drawFirstMixer(100 - val)); }); Caratteristiche della pavimentazione in gomma colata La pavimentazione antitrauma in gomma colata è ottenuta lavorando un mix di materiale granuloso con resine poliuretaniche, per garantire una superficie uniforme e antishock. Questo tipo di pavimentazione antitrauma resiste all'usura, agli agenti atmosferici e ai raggi UV, mantenendo le sue proprietà tecniche nel tempo. Vantaggi della gomma colata Utilizzando la gomma colata, è possibile ottenere una pavimentazione antitrauma che non solo protegge gli utenti durante il gioco, ma offre anche notevoli possibilità di personalizzazione. Con la pavimentazione antitrauma colata in opera, si possono scegliere colori e design differenti, creando combinazioni e figure tridimensionali dal forte impatto estetico. Applicazioni e soluzioni personalizzate La pavimentazione antitrauma per parco giochi in gomma colata è ideale per: • Parchi gioco e aree ricreative • Scuole e asili • Spazi pubblici e zone sportive Le nostre soluzioni includono anche opzioni come la pavimentazione antitrauma per parco giochi e le pavimentazioni antitrauma per parchi gioco, studiata per garantire la massima sicurezza senza compromettere l’estetica dell’area. Conclusione La gomma colata rappresenta la scelta ideale per una pavimentazione antitrauma in gomma colata, combinando resistenza, sicurezza e possibilità di personalizzazione. Se desideri un pavimento per parco giochi che sia sia funzionale che bello da vedere, la nostra soluzione in gomma colata è la risposta giusta.
Scopri prodotti →