久久久久av_欧美日韩一区二区在线_国产精品三区四区_日韩中字在线

Discuz! 官方交流社區(qū)

標(biāo)題: 論壇設(shè)置寬版之后,公告跟下面欄目是正常切換,但是頭部沒(méi)變化,請(qǐng)問(wèn)是什么情況? [打印本頁(yè)]

作者: windy4038    時(shí)間: 2025-11-10 15:32
標(biāo)題: 論壇設(shè)置寬版之后,公告跟下面欄目是正常切換,但是頭部沒(méi)變化,請(qǐng)問(wèn)是什么情況?

作者: 鴻茂傳媒    時(shí)間: 2025-11-10 15:34
后臺(tái)更新緩存在試試
作者: 湖中沉    時(shí)間: 2025-11-10 15:42
非默認(rèn)模板的話,大概率是模板兼容問(wèn)題;
作者: windy4038    時(shí)間: 2025-11-10 15:49
鴻茂傳媒 發(fā)表于 2025-11-10 15:34
后臺(tái)更新緩存在試試

已經(jīng)更新過(guò)緩存 還是不行,基本靜態(tài)HTML的代碼 了一部分  是CSS沖突 還是代碼問(wèn)題?
作者: windy4038    時(shí)間: 2025-11-10 15:51
湖中沉 發(fā)表于 2025-11-10 15:42
非默認(rèn)模板的話,大概率是模板兼容問(wèn)題;

- -我首頁(yè)就時(shí)增加了 廣告用了靜態(tài)HTML
作者: windy4038    時(shí)間: 2025-11-10 16:10
      
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background: #f5f7fa;
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
        }
        
        header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        header h1 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        header p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            color: #7f8c8d;
        }
        
        .notice-container {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            background: white;
            border: 1px solid #e0e0e0;
        }
        
        .notice-board {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .notice-list {
            list-style: none;
            position: relative;
            transition: transform 0.5s ease-in-out;
        }
        
        .notice-list li {
            height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 20px 25px;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.3s;
        }
        
        .notice-list li:hover {
            background: #f9f9f9;
        }
        
        .notice-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .notice-title i {
            color: #3498db;
        }
        
        .notice-content {
            color: #555;
            line-height: 1.6;
            margin-bottom: 12px;
        }
        
        .notice-date {
            color: #888;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .notice-indicators {
            display: flex;
            justify-content: center;
            padding: 15px;
            background: #f8f9fa;
            border-top: 1px solid #eee;
        }
        
        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .indicator.active {
            background: #3498db;
            transform: scale(1.2);
        }
        
        .new {
            background: #f0f8ff;
            border-left: 4px solid #3498db;
        }
        
        .demo-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .demo-box {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }
        
        .demo-box h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .demo-box p {
            color: #555;
            line-height: 1.6;
        }
        
        footer {
            margin-top: 50px;
            text-align: center;
            color: #7f8c8d;
            padding: 20px;
            font-size: 0.9rem;
            width: 100%;
        }
        
        /* 響應(yīng)式設(shè)計(jì) */
        @media (max-width: 768px) {
            header h1 {
                font-size: 1.8rem;
            }
            
            .notice-board {
                height: 200px;
            }
            
            .notice-list li {
                height: 200px;
                padding: 18px 20px;
            }
            
            .notice-title {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 480px) {
            header h1 {
                font-size: 1.6rem;
            }
            
            .notice-board {
                height: 180px;
            }
            
            .notice-list li {
                height: 180px;
                padding: 15px;
            }
            
            .notice-title {
                font-size: 1rem;
            }
            
            .notice-content {
                font-size: 0.9rem;
            }
        }
    </style>

    <div class="container">
              
        <div class="notice-container">
            <div class="notice-board">
                <ul class="notice-list" id="noticeList">
                    <li >
                        <div class="notice-title"></i> 系統(tǒng)維護(hù)通知</div>
                        <div class="notice-content">為了提供更優(yōu)質(zhì)的服務(wù),我們將在本周六凌晨2:00-6:00進(jìn)行系統(tǒng)維護(hù),期間服務(wù)將短暫不可用。</div>
                        <div class="notice-date"><i class="far fa-clock"></i> 2023-10-15</div>
                    </li>
                    <li>
                        <div class="notice-title"><i class="fas fa-star"></i> 新功能上線</div>
                        <div class="notice-content">我們很高興地宣布,新版用戶中心已上線,新增多項(xiàng)實(shí)用功能,歡迎體驗(yàn)并提供寶貴意見(jiàn)。</div>
                        <div class="notice-date"><i class="far fa-clock"></i> 2023-10-12</div>
                    </li>
                    <li>
                        <div class="notice-title"><i class="fas fa-flag"></i> 國(guó)慶節(jié)假期安排</div>
                        <div class="notice-content">根據(jù)國(guó)家法定節(jié)假日安排,我們的客服中心將于10月1日至10月7日放假,10月8日恢復(fù)正常服務(wù)。</div>
                        <div class="notice-date"><i class="far fa-clock"></i> 2023-09-28</div>
                    </li>
                    <li>
                        <div class="notice-title"><i class="fas fa-shield-alt"></i> 安全提醒</div>
                        <div class="notice-content">近期發(fā)現(xiàn)有不法分子冒充我司工作人員進(jìn)行詐騙,請(qǐng)各位用戶提高警惕,謹(jǐn)防上當(dāng)受騙。</div>
                        <div class="notice-date"><i class="far fa-clock"></i> 2023-09-25</div>
                    </li>
                    <li>
                        <div class="notice-title"><i class="fas fa-sync-alt"></i> 產(chǎn)品更新日志</div>
                        <div class="notice-content">本次更新修復(fù)了已知的3個(gè)問(wèn)題,優(yōu)化了系統(tǒng)性能,提升了用戶體驗(yàn)。詳細(xì)更新內(nèi)容請(qǐng)查看更新日志。</div>
                        <div class="notice-date"><i class="far fa-clock"></i> 2023-09-20</div>
                    </li>
                </ul>
            </div>
            
            <div class="notice-indicators" id="indicators">
                <!-- 指示器將由JS動(dòng)態(tài)生成 -->
            </div>
        </div>
        
            </div>

  

    <script>
        document.addEventListener('DOMContentLoaded', function() {
            const noticeList = document.getElementById('noticeList');
            const indicatorsContainer = document.getElementById('indicators');
            
            const notices = noticeList.querySelectorAll('li');
            const noticeCount = notices.length;
            
            // 動(dòng)態(tài)獲取公告高度
            let noticeHeight = notices[0] ? notices[0].offsetHeight : 220;
            let currentIndex = 0;
            let autoScrollInterval;
            
            // 初始化指示器
            function initIndicators() {
                indicatorsContainer.innerHTML = '';
                for (let i = 0; i < noticeCount; i++) {
                    const indicator = document.createElement('div');
                    indicator.className = 'indicator';
                    if (i === currentIndex) {
                        indicator.classList.add('active');
                    }
                    indicator.addEventListener('click', () => {
                        goToNotice(i);
                    });
                    indicatorsContainer.appendChild(indicator);
                }
            }
            
            // 更新指示器狀態(tài)
            function updateIndicators() {
                const indicators = document.querySelectorAll('.indicator');
                indicators.forEach((indicator, index) => {
                    if (index === currentIndex) {
                        indicator.classList.add('active');
                    } else {
                        indicator.classList.remove('active');
                    }
                });
            }
            
            // 滾動(dòng)到指定公告
            function goToNotice(index) {
                currentIndex = index;
                const translateY = -currentIndex * noticeHeight;
                noticeList.style.transform = `translateY(${translateY}px)`;
                updateIndicators();
            }
            
            // 滾動(dòng)到下一條公告
            function nextNotice() {
                currentIndex = (currentIndex + 1) % noticeCount;
                goToNotice(currentIndex);
            }
            
            // 開(kāi)始自動(dòng)滾動(dòng)
            function startAutoScroll() {
                autoScrollInterval = setInterval(() => {
                    nextNotice();
                }, 4000);
            }
            
            // 鼠標(biāo)懸停時(shí)暫停自動(dòng)滾動(dòng)
            noticeList.addEventListener('mouseenter', () => {
                clearInterval(autoScrollInterval);
            });
            
            // 鼠標(biāo)離開(kāi)時(shí)恢復(fù)自動(dòng)滾動(dòng)
            noticeList.addEventListener('mouseleave', () => {
                startAutoScroll();
            });
            
            // 窗口大小變化時(shí)重新計(jì)算高度
            window.addEventListener('resize', () => {
                const newHeight = notices[0] ? notices[0].offsetHeight : 220;
                if (newHeight !== noticeHeight) {
                    noticeHeight = newHeight;
                    goToNotice(currentIndex); // 重新定位當(dāng)前公告
                }
            });
            
            // 初始化
            if (noticeCount > 0) {
                initIndicators();
                startAutoScroll();
            }
        });
    </script>
剛剛用了默認(rèn)模板還是出現(xiàn)同樣的問(wèn)題 我添加的靜態(tài)公告代碼是這樣子的
作者: 湖中沉    時(shí)間: 2025-11-10 16:16
windy4038 發(fā)表于 2025-11-10 16:10
* {
            margin: 0;
            padding: 0;

你自己加的這個(gè)代碼里就有限制頭部最大寬度的樣式定義,所以你自己這段代碼造成的
作者: windy4038    時(shí)間: 2025-11-10 16:35
湖中沉 發(fā)表于 2025-11-10 16:16
你自己加的這個(gè)代碼里就有限制頭部最大寬度的樣式定義,所以你自己這段代碼造成的 ...

- -嘗試了 把這整個(gè)代碼都刪除了 然后更新緩存 還是不行 同樣的老問(wèn)題
作者: 湖中沉    時(shí)間: 2025-11-10 16:37
windy4038 發(fā)表于 2025-11-10 16:35
- -嘗試了 把這整個(gè)代碼都刪除了 然后更新緩存 還是不行 同樣的老問(wèn)題

你大概率還有其他代碼限制唄,DZ標(biāo)準(zhǔn)產(chǎn)品是肯定沒(méi)問(wèn)題的,與其在這猜,你不如直接放出地址更實(shí)際
作者: windy4038    時(shí)間: 2025-11-10 16:51
湖中沉 發(fā)表于 2025-11-10 16:37
你大概率還有其他代碼限制唄,DZ標(biāo)準(zhǔn)產(chǎn)品是肯定沒(méi)問(wèn)題的,與其在這猜,你不如直接放出地址更實(shí)際 ...

- -因?yàn)槭蔷钟蚓W(wǎng)沒(méi)放出來(lái) 所以發(fā)不了
作者: 科站網(wǎng)    時(shí)間: 2025-11-10 17:54
實(shí)在有問(wèn)題找模板作者啊
作者: artery    時(shí)間: 5 天前
  1. max-width: 1200px;
復(fù)制代碼
把這個(gè)刪除試試




歡迎光臨 Discuz! 官方交流社區(qū) (http://www.9999xn.com/) Powered by Discuz! X5.0
久久久久av_欧美日韩一区二区在线_国产精品三区四区_日韩中字在线
久久精品国产免费| 国产亚洲自拍一区| 亚洲国产精品一区二区www| 亚洲国产一二三| 亚洲高清电影| 国产毛片精品国产一区二区三区| 国产高清久久久久| 在线综合亚洲| 亚洲色图在线视频| 国内自拍一区| 欧美国产欧美综合| 国内一区二区三区| 福利一区二区在线观看| 一本色道久久综合狠狠躁的推荐| 日本一区二区免费在线| 欧美全黄视频| 一区二区视频欧美| 欧美videos大乳护士334| 亚洲精品老司机| 粉嫩一区二区三区在线看| 日韩写真欧美这视频| 午夜精品免费在线| 91丨九色丨蝌蚪丨老版| 欧美性一二三区| 亚洲精品videosex极品| 国产一级久久| 国产人妖乱国产精品人妖| 91香蕉视频在线| 中文字幕中文字幕在线一区| 成人三级伦理片| 欧美日韩小视频| 免费美女久久99| 在线综合视频播放| 97se亚洲国产综合自在线观| 国产欧美一区二区三区网站 | 久久国产精品免费一区| 久久精品理论片| 麻豆精品视频在线观看视频| 日韩午夜在线观看视频| 日韩欧美综合在线| 国产欧美一区在线| 夜夜爽夜夜爽精品视频| 日韩精品在线一区二区| 亚洲第一伊人| 久久激情视频| 在线播放/欧美激情| 久久久综合激的五月天| 国产农村妇女毛片精品久久莱园子| 日韩**一区毛片| www久久久久| 99国产精品久久久久久久成人热| 手机精品视频在线观看| 久久免费午夜影院| 亚洲色欲色欲www在线观看| 丝袜亚洲精品中文字幕一区| 国产aⅴ精品一区二区三区色成熟| 你懂的国产精品永久在线| 天堂一区二区在线| 国产91在线观看丝袜| 欧美日韩另类综合| 国产裸体歌舞团一区二区| yourporn久久国产精品| 日本午夜精品视频在线观看 | 葵司免费一区二区三区四区五区| 欧美日韩色综合| 中文字幕 久热精品 视频在线| 亚洲成人综合视频| 国产清纯在线一区二区www| 亚洲日本在线天堂| 国产精品88av| 日韩在线一区二区三区| 成人自拍视频在线| 国产伦精品一区| 精品国产99国产精品| 欧美日本在线播放| 模特精品在线| 91久久精品www人人做人人爽| 91一区一区三区| 在线观看亚洲精品视频| 尤妮丝一区二区裸体视频| 日本久久电影网| 亚洲尤物在线| 久久久久久日产精品| 日韩在线观看一区二区| 欧美片网站免费| 91精品国产欧美一区二区18| 欧美性生活一区| 中文字幕一区二区在线观看| 国产日韩精品一区二区三区在线| 男人的天堂亚洲一区| 欧美日韩成人| 欧美tk—视频vk| 寂寞少妇一区二区三区| 久久福利资源站| 亚洲免费久久| 国产精品无码永久免费888| 国产日韩一级二级三级| 激情都市一区二区| 国产精品一区二区果冻传媒| 亚洲中字在线| 亚洲精品国产视频| 欧美午夜a级限制福利片| 日韩精品综合一本久道在线视频| 久久电影网站中文字幕| 色播五月激情综合网| 一区二区三区免费网站| 欧美精品网站| 久久久精品黄色| 99久久精品免费精品国产| 欧美高清一级片在线| 欧美一区二区在线观看| 日韩vs国产vs欧美| 一本久道中文字幕精品亚洲嫩| 亚洲欧美福利一区二区| 亚洲va国产va欧美va观看| 亚洲日韩成人| 亚洲精品久久久蜜桃| 精品动漫av| 亚洲自拍偷拍网站| 日韩1区2区日韩1区2区| 亚洲欧美日韩视频二区 | 亚洲国产精品一区制服丝袜| 久久久亚洲欧洲日产国码αv| 成人午夜碰碰视频| 久久综合九色综合97_久久久| 成人免费视频国产在线观看| 欧美va亚洲va国产综合| av中文字幕在线不卡| 日韩视频在线一区二区| 色94色欧美sute亚洲13| 亚洲黄网站黄| 国语精品一区| 欧美影视一区| av一区二区三区| 丰满放荡岳乱妇91ww| 国产一区福利在线| 久久精品国产成人一区二区三区 | 久久青草欧美一区二区三区| 午夜日韩av| 亚洲综合丝袜美腿| 色综合激情五月| 国产一区二区三区综合| 精品国产乱码久久久久久浪潮| 午夜欧美精品| 亚洲一区二区精品在线| 在线一区欧美| 国产一区成人| 99www免费人成精品| 亚洲精品国产系列| 亚洲三级免费| 99国产精品| 国产精品毛片| 国产亚洲成人一区| 国产亚洲欧美一区二区 | 欧美亚洲综合久久| 激情婷婷亚洲| 欧美精品一区二区三区蜜臀| 影音先锋久久精品| 国产主播一区二区三区| 日本一区二区三区国色天香 | 国产三级三级三级精品8ⅰ区| 精品国产一区二区三区久久久蜜月| 国产精品剧情在线亚洲| 久久精品一区| 91日韩在线专区| 日韩国产欧美在线观看| 久久色视频免费观看| 中文久久精品| 岛国av在线一区| 亚洲成人先锋电影| 欧美成人一区二区| 久久久久久亚洲精品杨幂换脸 | 国产精品激情| 亚洲高清视频一区| 亚洲精品欧美| 久久av一区二区三区| 老司机精品导航| 欧美综合欧美视频| 欧美一区二区三区婷婷月色 | 久久成人精品无人区| 韩国毛片一区二区三区| 国产成人精品www牛牛影视| gogogo免费视频观看亚洲一| 欧美激情日韩| 免费观看91视频大全| 国产欧美日韩一区二区三区在线| 国产69精品久久久久毛片| 中文字幕在线一区免费| 久久先锋影音av| 综合久久给合久久狠狠狠97色| 亚洲在线观看免费视频| 三级欧美韩日大片在线看| 国产在线精品不卡| av中文字幕亚洲| 在线日韩av| 色素色在线综合| 欧美成人官网二区| 亚洲欧洲三级电影| 日韩av二区在线播放| 国产91丝袜在线播放|