document.addEventListener("DOMContentLoaded", function() { // ایجاد یک عنصر div و افزودن استایل به آن 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 = 'فروش مواد شیمیایی فقط جهت مراکز تحقیقاتی، دانشگاهی، پژوهشی، شرکت‌ها و مراکز دولتی انجام می‌شود.'; document.body.prepend(banner); // تابع برای تغییر شفافیت بنر و نمایش آن به صورت تدریجی let visible = false; function toggleVisibility() { visible = !visible; banner.style.opacity = visible ? '1' : '0'; setTimeout(toggleVisibility, 4000); // تغییر حالت هر 4 ثانیه } setTimeout(toggleVisibility, 500); // شروع تابع بعد از 500 میلی‌ثانیه });