為提供更高效的創作平台服務,我們持續進行產品整併與改版,並謹訂於2024 年 9 月 20 日起,正式結束「興趣牆」和「邦邦」服務,相關功能將轉移到全新改版的首頁短貼文河道繼續服務。感謝您一直以來對痞客邦的支持與厚愛,我們誠摯邀請您繼續創作,與我們一起探索更多的可能性。 關閉 前往新首頁 `; let announceStyleElement = document.createElement('style'); announceStyleElement.innerHTML = ` /* 公告區樣式 */ .announcement { position: fixed; top: 0; left: 0; width: 100%; background-color: rgba(244, 242, 231, 0.9); color: #696868; text-align: center; padding: 20px; z-index: 1000; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5); box-sizing: border-box; } .announcement p { word-wrap: break-word; overflow-wrap: break-word; margin: 0; padding: 0; font-size: 18px; font-weight: bold; } .announcement button { margin: 10px; padding: 10px 20px; background-color: #ee7a30; color: white; border: none; border-radius: 5px; cursor: pointer; } .announcement button:hover { background-color: #ff4b3e; } /* 頁面內容的基本樣式 */ .content { padding: 100px 20px; /* 確保公告區不會遮蓋內容 */ } `; announceDivElement.insertBefore(announceStyleElement, announceDivElement.nextSibling); bodyElement.prepend(announceDivElement, announceStyleElement); } let closeBtn = document.getElementById('close-announcement'); let goToPageBtn = document.getElementById('go-to-page'); // 關閉公告區的功能 closeBtn?.addEventListener('click', function() { let announcement = document.querySelector('.announcement'); announcement.style.display = 'none'; }); // 前往詳細頁面的功能 goToPageBtn?.addEventListener('click', function() { window.location.href = 'https://www.pixnet.net/?welcome=2024'; }); } );