<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
>
<channel>
<title><![CDATA[EMLOG]]></title> 
<atom:link href="https://www.0178.cn/rss.php" rel="self" type="application/rss+xml" />
<description><![CDATA[使用emlog搭建的站点]]></description>
<link>https://www.0178.cn/</link>
<language>zh-cn</language>

<item>
    <title>居中滚动</title>
    <link>https://www.0178.cn/10.html</link>
    <description><![CDATA[<pre><code class="language-html">&lt;!-- 竖向滚动 --&gt;
&lt;div style="height: 30px; line-height: 30px; overflow: hidden; background: #f8f9fa; padding: 0 10px; border-radius: 4px;"&gt;
    &lt;div class="vertical-scroll" id="vScroll"&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【岗哥】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【康哥】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【恒哥】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【春晓】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【宋】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【时文光】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【胡艳秋】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【沉静如水】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【中药】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【钟瑞武】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【刘进】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【徐祥海】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【小邓】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【杨盈】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【任建峡】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【顺】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【章国栋】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【浪淘沙】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【二月河】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
        &lt;div style="text-align:center;"&gt;谢谢~【陈显平】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;

&lt;script&gt;
const vScroll = document.getElementById('vScroll');
let itemList = Array.from(vScroll.children);

// 随机打乱数组函数
function shuffleArr(arr) {
    let newArr = [...arr];
    for (let i = newArr.length - 1; i &gt; 0; i--) {
        const j = Math.floor(Math.random() * (i + 1));
        [newArr[i], newArr[j]] = [newArr[j], newArr[i]];
    }
    return newArr;
}

// 初始化随机排序
let randomItems = shuffleArr(itemList);
// 清空原有内容，插入随机后的条目 + 复制一遍实现无缝滚动
vScroll.innerHTML = '';
randomItems.forEach(el =&gt; vScroll.appendChild(el.cloneNode(true)));
randomItems.forEach(el =&gt; vScroll.appendChild(el.cloneNode(true)));

let index = 0;
const singleHeight = 30;
const realLen = randomItems.length;

setInterval(() =&gt; {
    index++;
    vScroll.style.transition = 'transform 0.5s ease';
    vScroll.style.transform = `translateY(-${index * singleHeight}px)`;

    // 滚动完一轮，瞬间复位无动画
    if (index &gt;= realLen) {
        setTimeout(() =&gt; {
            index = 0;
            vScroll.style.transition = 'none';
            vScroll.style.transform = `translateY(0)`;
            // 每次循环结束重新随机打乱顺序
            randomItems = shuffleArr(itemList);
            vScroll.innerHTML = '';
            randomItems.forEach(el =&gt; vScroll.appendChild(el.cloneNode(true)));
            randomItems.forEach(el =&gt; vScroll.appendChild(el.cloneNode(true)));
        }, 500);
    }
}, 3000);
&lt;/script&gt;</code></pre>]]></description>
    <pubDate>Wed, 10 Jun 2026 19:26:23 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://www.0178.cn/10.html</guid>
</item>
<item>
    <title>滚动赞赏</title>
    <link>https://www.0178.cn/9.html</link>
    <description><![CDATA[<pre><code class="language-html">  &lt;!-- 竖向滚动 --&gt;
&lt;div style="height: 30px; line-height: 30px; overflow: hidden; background: #f8f9fa; padding: 0 10px; border-radius: 4px;
  &lt;div class="vertical-scroll" id="vScroll"&gt;
    &lt;div&gt;谢谢~【恒哥】的赞赏，❤️感恩厚爱支持！&lt;/div&gt;
    &lt;div&gt;谢谢~【杨盈】哥的赞赏，❤️感谢有你&lt;/div&gt;
    &lt;div&gt;谢谢~【徐祥海】哥的赞赏，❤️感恩有你&lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;script&gt;
let vScroll = document.getElementById('vScroll');
let items = vScroll.children;
let index = 0;

setInterval(() =&gt; {
  index++;
  // 滚动到下一条
  vScroll.style.transform = `translateY(-${index * 30}px)`;
  vScroll.style.transition = '0.5s';

  // 滚动到最后一条重置
  if(index &gt;= items.length) {
    setTimeout(() =&gt; {
      index = 0;
      vScroll.style.transform = 'translateY(0)';
      vScroll.style.transition = 'none';
    }, 500);
  }
}, 3000); // 3秒切换一次
&lt;/script&gt;</code></pre>]]></description>
    <pubDate>Wed, 10 Jun 2026 12:22:40 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://www.0178.cn/9.html</guid>
</item>
<item>
    <title>赞赏；链接</title>
    <link>https://www.0178.cn/8.html</link>
    <description><![CDATA[<p>三妮</p>
<pre><code class="language-html">https://lili.oooc.cn/app/index.php?n=3&amp;d=entry&amp;id=149&amp;ac=Zanshang&amp;o=hzw_weixinnews</code></pre>
<p>丽丽</p>
<pre><code class="language-html">https://lili.oooc.cn/app/index.php?n=3&amp;d=entry&amp;id=150&amp;ac=Zanshang&amp;o=hzw_weixinnews</code></pre>
<p>爷爷</p>
<pre><code class="language-html">https://lili.oooc.cn/app/index.php?n=3&amp;d=entry&amp;id=31&amp;ac=Zanshang&amp;o=hzw_weixinnews</code></pre>
<p>奶奶</p>
<pre><code class="language-html">https://lili.oooc.cn/app/index.php?n=3&amp;d=entry&amp;id=154&amp;ac=Zanshang&amp;o=hzw_weixinnews</code></pre>]]></description>
    <pubDate>Sat, 30 May 2026 12:57:29 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://www.0178.cn/8.html</guid>
</item>
<item>
    <title>复制</title>
    <link>https://www.0178.cn/7.html</link>
    <description><![CDATA[<p>丽丽</p>
<pre><code class="language-html">点击链接进入：→www.0178.cn/3.html</code></pre>
<p>三妮</p>
<pre><code class="language-html">点击链接进入：→www.0178.cn/4.html</code></pre>
<p>奶奶</p>
<pre><code class="language-html">点击链接进入：→www.0178.cn/5.html</code></pre>
<p>爷爷</p>
<pre><code class="language-html">点击链接进入：→www.0178.cn/6.html</code></pre>]]></description>
    <pubDate>Fri, 29 May 2026 16:28:52 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://www.0178.cn/7.html</guid>
</item>
<item>
    <title>爷爷跳转</title>
    <link>https://www.0178.cn/6.html</link>
    <description><![CDATA[]]></description>
    <pubDate>Fri, 29 May 2026 16:28:23 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://www.0178.cn/6.html</guid>
</item>
<item>
    <title>奶奶跳转</title>
    <link>https://www.0178.cn/5.html</link>
    <description><![CDATA[]]></description>
    <pubDate>Fri, 29 May 2026 16:27:36 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://www.0178.cn/5.html</guid>
</item>
<item>
    <title>三妮跳转</title>
    <link>https://www.0178.cn/4.html</link>
    <description><![CDATA[]]></description>
    <pubDate>Fri, 29 May 2026 16:27:10 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://www.0178.cn/4.html</guid>
</item>
<item>
    <title>丽丽跳转</title>
    <link>https://www.0178.cn/3.html</link>
    <description><![CDATA[]]></description>
    <pubDate>Fri, 29 May 2026 16:25:18 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://www.0178.cn/3.html</guid>
</item>
</channel>
</rss>