Anna-Lenas Favoriten
A collection page of Reisenthel
About
Code Kopierer body { font-family: Arial, sans-serif; margin: 20px; } .container { display: flex; flex-direction: column; align-items: center; margin-top: 50px; } input[type="text"] { width: 300px; padding: 10px; font-size: 16px; margin-bottom: 20px; box-sizing: border-box; text-align: center; /* Text zentrieren */ } button { padding: 10px 20px; font-size: 16px; cursor: pointer; border: none; background-color: #4CAF50; color: white; border-radius: 5px; transition: background-color 0.3s ease; } button:hover { background-color: #45a049; } Code kopieren document.getElementById('copyButton').addEventListener('click', function() { const codeInput = document.getElementById('codeInput'); codeInput.select(); codeInput.setSelectionRange(0, 99999); // Für mobile Geräte try { const successful = document.execCommand('copy'); const msg = successful ? 'Code wurde in die Zwischenablage kopiert!' : 'Fehler beim Kopieren des Codes'; alert(msg); } catch (err) { alert('Fehler beim Kopieren des Codes: ' + err); } });