document.addEventListener("DOMContentLoaded", function() { const headerText = 'فروش مواد شیمیایی فقط جهت مراکز تحقیقاتی، دانشگاهی، پژوهشی، شرکت‌ها و مراکز دولتی انجام می‌شود.'; const banner = document.createElement('div'); banner.style.cssText = 'width: 100%; background-color: yellow; color: black; text-align: center; padding: 10px 0; font-size: 20px; opacity: 0; position: fixed; top: 0; left: 0; transition: opacity 2s;'; banner.textContent = headerText; document.body.prepend(banner); let visible = false; function toggleVisibility() { visible = !visible; banner.style.opacity = visible ? '1' : '0'; setTimeout(toggleVisibility, 4000); // Toggle text visibility every 4 seconds } setTimeout(toggleVisibility, 500); // Start after 500 ms });