Koch Chemie Felgenreiniger Extrem 11 kg - extrémně silný čistič kol a strojů - kyselina
Koch Chemie Felgenreiniger Extrem 11 kg - extrémně silný čistič kol a strojůFelgenreiniger je vysoce účinný prostředek k rychlému vyčištění i těch nejvíce znečištěných kol. Díky extrémně kyselému složení (pH 0,2) na bázi minerální kyseliny bez fluorovodíkové složky efektivně rozpouští brzdový prach a silniční nečistoty. S tímto čističem bude čištění ráfků rychlé a efektivní.Pozor: doporučujeme pouze zkušeným detailerům.Ideální řešení pro silné znečištěníTento čistič kol je speciálně navržen pro veškeré silné znečištění, které běžné čističe nezvládnou. Výsledkem je zářivě čistý povrch. Tento čistič je ideální volbou i pro použití v průmyslu a na stavební stroje.Ohleduplnost k životnímu prostředíČistič je vhodný i pro použití v biologických čistírnách odpadních vod, což dokazuje jeho nižší ekologickou stopu. Při aplikaci dbejte na nošení rukavic a vyhněte se přímému kontaktu s pokožkou a očima. Chemii nenanášejte na rozehřáté plochy a vždy ověřte vhodnost na malém kousku povrchu.Jak na aplikaci:Pro efektivní použití stačí čistič naředit vodou v poměru 1:3 až 1:10 dle stupně znečištění.Pracujte pouze na zchladlém povrchu ve stínu.Nastříkejte na povrch, nechte krátce působit (nesmí zaschnout).Pokud je potřeba, pomozte si kartáčem na kola namočeném v autošamponu.Nakonec důkladně opláchněte tlakem vody.Ředění chemie body { font-family: Arial, sans-serif; margin: 20px; background: #f4f4f9; color: #333; } .calculator { display: flex; justify-content: space-between; max-width: 800px; margin: auto; padding: 20px; border: 1px solid #ddd; border-radius: 10px; background: #fff; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); } .slider-section { flex: 1; margin-right: 20px; } .slider-container { margin-bottom: 20px; } .slider-label { font-size: 1em; margin-bottom: 5px; display: block; color: #555; } .slider { width: 100%; appearance: none; height: 10px; border-radius: 5px; outline: none; transition: background 0.3s; } .slider::-webkit-slider-thumb { appearance: none; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 2px solid #3CDBC0; cursor: pointer; } .result-box { flex: 1; padding: 20px; border: 1px solid #ddd; border-radius: 10px; background: #f9f9f9; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); text-align: left; } .result-box h3 { font-size: 1.4em; margin-bottom: 15px; color: #333; } .result-row { font-size: 1.4em; margin: 15px 0; color: #333; } .result-row span { font-weight: bold; color: #3CDBC0; } .footer-text { font-size: 0.9em; margin-top: 15px; color: #555; font-style: italic; } Ředění chemieObjem láhve:Objem: 1000 mlPoměr ředění:Poměr: 1:10Výsledky:Množství vody: 0 mlMnožství chemie: 0 ml "S ředěním Ti moc rádi pomůžeme, ale tu práci zvládneš vlastníma rukama. Tvoji parťáci z UMYEM."
// Hodnoty pro objem láhve a poměr ředění
const volumes = [200, 500, 750, 1000, 1250, 1500, 2000];
const ratios = [1, 2, 3, 4, 5, 10, 15, 20, 30, 40, 50, 60];
// Elementy pro kalkulaci
const chemistryVolumeSlider = document.getElementById('chemistry-volume-slider');
const chemistryRatioSlider = document.getElementById('chemistry-ratio-slider');
const chemistryVolumeLabel = document.getElementById('chemistry-volume-label');
const chemistryRatioLabel = document.getElementById('chemistry-ratio-label');
const chemistryWater = document.getElementById('chemistry-water');
const chemistryProduct = document.getElementById('chemistry-product');
// Dynamická změna barvy slideru
function updateSliderBackground(slider, gradientColors) {
const value = slider.value;
const min = slider.min;
const max = slider.max;
const percentage = ((value - min) / (max - min)) * 100;
slider.style.background = `linear-gradient(to right, ${gradientColors[0]} ${percentage}%, ${gradientColors[1]} ${percentage}%)`;
}
// Aktualizace výsledků
function updateChemistryResults() {
const volume = volumes[chemistryVolumeSlider.value];
const ratio = ratios[chemistryRatioSlider.value];
const product = Math.round(volume / (parseInt(ratio) + 1));
const water = volume - product;
// Zobrazení výsledků
chemistryVolumeLabel.textContent = `Objem: ${volume} ml`;
chemistryRatioLabel.textContent = `Poměr: 1:${ratio}`;
chemistryWater.innerHTML = `${water} ml`;
chemistryProduct.innerHTML = `${product} ml`;
// Aktualizace barvy sliderů
updateSliderBackground(chemistryVolumeSlider, ['#3CDBC0', '#ccc']);
updateSliderBackground(chemistryRatioSlider, ['#3CDBC0', '#ccc']);
}
// Události posuvníků
chemistryVolumeSlider.addEventListener('input', updateChemistryResults);
chemistryRatioSlider.addEventListener('input', updateChemistryResults);
// Inicializace
updateChemistryResults();
Zobrazit více // Hodnoty pro objem láhve a poměr ředění
const volumes = [200, 500, 750, 1000, 1250, 1500, 2000];
const ratios = [1, 2, 3, 4, 5, 10, 15, 20, 30, 40, 50, 60];
// Elementy pro kalkulaci
const chemistryVolumeSlider = document.getElementById('chemistry-volume-slider');
const chemistryRatioSlider = document.getElementById('chemistry-ratio-slider');
const chemistryVolumeLabel = document.getElementById('chemistry-volume-label');
const chemistryRatioLabel = document.getElementById('chemistry-ratio-label');
const chemistryWater = document.getElementById('chemistry-water');
const chemistryProduct = document.getElementById('chemistry-product');
// Dynamická změna barvy slideru
function updateSliderBackground(slider, gradientColors) {
const value = slider.value;
const min = slider.min;
const max = slider.max;
const percentage = ((value - min) / (max - min)) * 100;
slider.style.background = `linear-gradient(to right, ${gradientColors[0]} ${percentage}%, ${gradientColors[1]} ${percentage}%)`;
}
// Aktualizace výsledků
function updateChemistryResults() {
const volume = volumes[chemistryVolumeSlider.value];
const ratio = ratios[chemistryRatioSlider.value];
const product = Math.round(volume / (parseInt(ratio) + 1));
const water = volume - product;
// Zobrazení výsledků
chemistryVolumeLabel.textContent = `Objem: ${volume} ml`;
chemistryRatioLabel.textContent = `Poměr: 1:${ratio}`;
chemistryWater.innerHTML = `${water} ml`;
chemistryProduct.innerHTML = `${product} ml`;
// Aktualizace barvy sliderů
updateSliderBackground(chemistryVolumeSlider, ['#3CDBC0', '#ccc']);
updateSliderBackground(chemistryRatioSlider, ['#3CDBC0', '#ccc']);
}
// Události posuvníků
chemistryVolumeSlider.addEventListener('input', updateChemistryResults);
chemistryRatioSlider.addEventListener('input', updateChemistryResults);
// Inicializace
updateChemistryResults();








