پرش به محتوا
document.addEventListener('DOMContentLoaded', function () {
const btn = document.querySelector('.copy-btn');
const input = document.getElementById('copyInput');
const toast = document.querySelector('.toast');
if (!btn || !input || !toast) return;
btn.addEventListener('click', function () {
navigator.clipboard.writeText(input.value);
toast.style.opacity = '1';
toast.style.transform = 'translateY(0)';
setTimeout(function () {
toast.style.opacity = '0';
toast.style.transform = 'translateY(5px)';
}, 1200);
});
});