<!-- HTML -->
<div class="calculator">
<h1>Preisrechner</h1>
<div class="input-section">
<label for="packInput">Menge (je Paket):</label>
<div class="quantity-control">
<button id="decrease">−</button>
<input type="number" id="packInput" value="1" min="1">
<button id="increase">+</button>
</div>
</div>
<div class="toggle-section">
<button id="packButton" class=„active“>Paket</button>
<button id="sqmButton">m²</button>
</div>
<div class="sqm-input-section" style="display: none;">
<label for="sqmInput">Fläche (m²):</label>
<input type="number" id="sqmInput" step="0.1">
</div>
<div class="price-input-section">
<label for="pricePerPackInput">Preis je Paket in €:</label>
<input type="number" id="pricePerPackInput" value=„20.00" step="0.01">
</div>
<div class="result-section">
<p id="result"></p>
</div>
</div>
<!-- CSS -->
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
}
.calculator {
background-color: #f0f0f0;
padding: 15px;
border-radius: 8px;
width: 400px;
text-align: left;
margin: 20px auto;
border: 1px solid #ccc;
}
.calculator h1 {
text-align: center;
margin-bottom: 15px;
font-size: 1.2em;
}
.input-section, .toggle-section, .price-input-section, .sqm-input-section {
margin-bottom: 10px;
}
.quantity-control {
display: flex;
align-items: center;
}
.quantity-control button {
width: 30px;
height: 30px;
font-size: 1.2em;
border: 1px solid #ccc;
background-color: #fff;
color: #b71c17;
cursor: pointer;
}
.quantity-control input {
width: 70px;
height: 30px;
text-align: center;
font-size: 1em;
border: 1px solid #ccc;
border-left: none;
border-right: none;
}
.toggle-section {
display: flex;
justify-content: space-between;
}
.toggle-section button {
flex: 1;
padding: 5px;
border: 1px solid #ccc;
background-color: #fff;
cursor: pointer;
font-size: 0.9em;
}
.toggle-section .active {
border-color: orange;
font-weight: bold;
}
.price-input-section input, .sqm-input-section input {
width: calc(100% - 20px);
padding: 5px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 0.9em;
}
.result-section {
text-align: left;
font-size: 1em;
color: #333;
margin-top: 10px;
}
.result-section .price {
font-size: 1.2em;
font-weight: bold;
color: #d9534f;
}
</style>
<!-- JavaScript -->
<script>
document.addEventListener('DOMContentLoaded', function() {
const sqmPerPack = 2.635;
const decreaseButton = document.getElementById('decrease');
const increaseButton = document.getElementById('increase');
const packInput = document.getElementById('packInput');
const sqmInput = document.getElementById('sqmInput');
const packButton = document.getElementById('packButton');
const sqmButton = document.getElementById('sqmButton');
const result = document.getElementById('result');
const pricePerPackInput = document.getElementById('pricePerPackInput');
function calculatePrice() {
const pricePerPack = parseFloat(pricePerPackInput.value);
let packs = parseInt(packInput.value);
if (packs < 1) packs = 1;
let sqm = packs * sqmPerPack;
let price = packs * pricePerPack;
result.innerHTML = `${sqm.toFixed(1)} m² für <span class="price">€${price.toFixed(2)}</span>`;
}
function calculatePriceFromSqm() {
const pricePerPack = parseFloat(pricePerPackInput.value);
let sqm = parseFloat(sqmInput.value);
if (!isNaN(sqm)) {
let packs = Math.ceil(sqm / sqmPerPack);
sqm = packs * sqmPerPack;
let price = packs * pricePerPack;
result.innerHTML = `Ergeben <b>${packs} Pack(s)</b> - <b>${sqm.toFixed(1)} m²</b> - Preis: <span class="price">€${price.toFixed(2)}</span>`;
}
}
decreaseButton.addEventListener('click', () => {
let value = parseInt(packInput.value);
if (value > 1) {
packInput.value = value - 1;
calculatePrice();
}
});
increaseButton.addEventListener('click', () => {
packInput.value = parseInt(packInput.value) + 1;
calculatePrice();
});
packInput.addEventListener('input', calculatePrice);
pricePerPackInput.addEventListener('input', calculatePrice);
packButton.addEventListener('click', () => {
packButton.classList.add('active');
sqmButton.classList.remove('active');
packInput.parentElement.style.display = 'flex';
sqmInput.parentElement.style.display = 'none';
calculatePrice();
});
sqmButton.addEventListener('click', () => {
sqmButton.classList.add('active');
packButton.classList.remove('active');
packInput.parentElement.style.display = 'none';
sqmInput.parentElement.style.display = 'block';
calculatePriceFromSqm();
});
sqmInput.addEventListener('input', calculatePriceFromSqm);
calculatePrice();
});
</script>