<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
>
<channel>
	<title>赤色警惕</title>
	<link>https://chishe.wodemo.net/</link>
        <item>
        <title><![CDATA[小猫记录]]></title>
		<link><![CDATA[https://chishe.wodemo.net/entry/545965]]></link>
		<dc:creator><![CDATA[百晓生博客网 (@blog1)]]></dc:creator>
		<pubDate><![CDATA[Wed, 08 Oct 2025 19:33:58 -0700]]></pubDate>
        <description><![CDATA[


    
    
    跟随鼠标的小猫咪
    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            min-height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            overflow: hidden;
            cursor: url('data:image/svg+xml;utf8,') 16 16, auto;
            font-family: 'Arial', sans-serif;
        }

        /* 背景装饰 */
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }

        /* 小猫容器 */
        .cat-container {
            position: fixed;
            width: 120px;
            height: 120px;
            pointer-events: none;
            z-index: 1000;
            transition: transform 0.1s ease-out;
        }

        /* 小猫主体 */
        .cat {
            position: relative;
            width: 100%;
            height: 100%;
            animation: bounce 0.5s infinite alternate;
        }

        @keyframes bounce {
            0% { transform: translateY(0); }
            100% { transform: translateY(-5px); }
        }

        /* 猫身体 */
        .cat-body {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 50px;
            background: linear-gradient(135deg, #ffa500, #ff8c00);
            border-radius: 50% 50% 40% 40%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        /* 猫头 */
        .cat-head {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 45px;
            background: linear-gradient(135deg, #ffa500, #ff8c00);
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0,0,0,0.3);
        }

        /* 猫耳朵 */
        .ear {
            position: absolute;
            width: 0;
            height: 0;
            border-style: solid;
        }

        .ear-left {
            top: 10px;
            left: 8px;
            border-width: 0 8px 15px 8px;
            border-color: transparent transparent #ffa500 transparent;
            transform: rotate(-20deg);
        }

        .ear-right {
            top: 10px;
            right: 8px;
            border-width: 0 8px 15px 8px;
            border-color: transparent transparent #ffa500 transparent;
            transform: rotate(20deg);
        }

        /* 猫眼睛 */
        .eye {
            position: absolute;
            width: 8px;
            height: 10px;
            background: #333;
            border-radius: 50%;
            top: 25px;
            animation: blink 4s infinite;
        }

        .eye-left {
            left: 15px;
        }

        .eye-right {
            right: 15px;
        }

        @keyframes blink {
            0%, 90%, 100% { transform: scaleY(1); }
            95% { transform: scaleY(0.1); }
        }

        /* 猫鼻子 */
        .nose {
            position: absolute;
            width: 6px;
            height: 4px;
            background: #ff69b4;
            border-radius: 50%;
            top: 35px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* 猫嘴巴 */
        .mouth {
            position: absolute;
            top: 38px;
            left: 50%;
            transform: translateX(-50%);
            width: 15px;
            height: 8px;
            border-bottom: 2px solid #333;
            border-radius: 0 0 50% 50%;
        }

        /* 猫胡须 */
        .whisker {
            position: absolute;
            width: 20px;
            height: 1px;
            background: #333;
            top: 33px;
        }

        .whisker-left-1 {
            left: 5px;
            transform: rotate(-10deg);
        }

        .whisker-left-2 {
            left: 5px;
            top: 37px;
            transform: rotate(-20deg);
        }

        .whisker-right-1 {
            right: 5px;
            transform: rotate(10deg);
        }

        .whisker-right-2 {
            right: 5px;
            top: 37px;
            transform: rotate(20deg);
        }

        /* 猫尾巴 */
        .tail {
            position: absolute;
            bottom: 25px;
            right: 10px;
            width: 30px;
            height: 30px;
            border: 8px solid #ffa500;
            border-top: none;
            border-right: none;
            border-radius: 0 0 0 100%;
            transform-origin: top right;
            animation: wag 1s infinite alternate;
        }

        @keyframes wag {
            0% { transform: rotate(-20deg); }
            100% { transform: rotate(20deg); }
        }

        /* 猫爪子 */
        .paw {
            position: absolute;
            width: 12px;
            height: 8px;
            background: #ff8c00;
            border-radius: 50%;
            bottom: 15px;
        }

        .paw-left {
            left: 35px;
        }

        .paw-right {
            right: 35px;
        }

        /* 脚印效果 */
        .paw-print {
            position: fixed;
            width: 20px;
            height: 20px;
            opacity: 0.3;
            pointer-events: none;
            animation: fadeOut 2s forwards;
        }

        @keyframes fadeOut {
            to {
                opacity: 0;
                transform: scale(0.5);
            }
        }

        /* 信息面板 */
        .info-panel {
            position: fixed;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            max-width: 300px;
        }

        .info-panel h1 {
            color: #764ba2;
            margin-bottom: 10px;
            font-size: 24px;
        }

        .info-panel p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .stats {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .stat-item {
            flex: 1;
            text-align: center;
            padding: 10px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 10px;
        }

        .stat-value {
            font-size: 20px;
            font-weight: bold;
        }

        .stat-label {
            font-size: 12px;
            opacity: 0.9;
        }

        /* 互动提示 */
        .interaction-hint {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.9);
            padding: 15px 30px;
            border-radius: 30px;
            color: #764ba2;
            font-weight: bold;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translateX(-50%) scale(1); }
            50% { transform: translateX(-50%) scale(1.05); }
        }

        /* 爱心效果 */
        .heart {
            position: fixed;
            width: 20px;
            height: 20px;
            background: #ff69b4;
            transform: rotate(45deg);
            animation: floatUp 2s forwards;
            pointer-events: none;
        }

        .heart::before,
        .heart::after {
            content: '';
            width: 20px;
            height: 20px;
            position: absolute;
            background: #ff69b4;
            border-radius: 50%;
        }

        .heart::before {
            top: -10px;
            left: 0;
        }

        .heart::after {
            left: -10px;
            top: 0;
        }

        @keyframes floatUp {
            to {
                transform: rotate(45deg) translateY(-100px);
                opacity: 0;
            }
        }
    


    
    

    
    
        🐱 小猫咪跟随器
        移动你的鼠标，小猫咪会跟着你走哦！
        点击页面可以给小猫咪喂食～
        
            
                0
                移动距离
            
            
                0
                喂食次数
            
        
    

    
    
        
            
                
                
                
                
                
                
                
                
                
                
            
            
            
            
            
        
    

    
    
        点击屏幕喂食小猫咪 🍖
    

    
        // 初始化变量
        const cat = document.getElementById('cat');
        const distanceEl = document.getElementById('distance');
        const clicksEl = document.getElementById('clicks');
        let mouseX = window.innerWidth / 2;
        let mouseY = window.innerHeight / 2;
        let catX = mouseX;
        let catY = mouseY;
        let totalDistance = 0;
        let clickCount = 0;
        let lastPawTime = 0;

        // 创建星星背景
        function createStars() {
            const starsContainer = document.getElementById('stars');
            for (let i = 0; i < 50; i++) {
                const star = document.createElement('div');
                star.className = 'star';
                star.style.left = Math.random() * 100 + '%';
                star.style.top = Math.random() * 100 + '%';
                star.style.animationDelay = Math.random() * 3 + 's';
                starsContainer.appendChild(star);
            }
        }

        // 创建脚印
        function createPawPrint(x, y) {
            const now = Date.now();
            if (now - lastPawTime < 200) return; // 限制脚印生成频率
            lastPawTime = now;

            const pawPrint = document.createElement('div');
            pawPrint.className = 'paw-print';
            pawPrint.innerHTML = '🐾';
            pawPrint.style.left = x + 'px';
            pawPrint.style.top = y + 'px';
            pawPrint.style.fontSize = '20px';
            document.body.appendChild(pawPrint);

            setTimeout(() => {
                pawPrint.remove();
            }, 2000);
        }

        // 创建爱心
        function createHeart(x, y) {
            const heart = document.createElement('div');
            heart.className = 'heart';
            heart.style.left = x + 'px';
            heart.style.top = y + 'px';
            document.body.appendChild(heart);

            setTimeout(() => {
                heart.remove();
            }, 2000);
        }

        // 鼠标移动事件
        document.addEventListener('mousemove', (e) => {
            mouseX = e.clientX;
            mouseY = e.clientY;
        });

        // 点击事件
        document.addEventListener('click', (e) => {
            // 排除点击信息面板
            if (e.target.closest('.info-panel')) return;
            
            clickCount++;
            clicksEl.textContent = clickCount;
            
            // 创建爱心效果
            for (let i = 0; i < 3; i++) {
                setTimeout(() => {
                    createHeart(
                        e.clientX + (Math.random() - 0.5) * 30,
                        e.clientY + (Math.random() - 0.5) * 30
                    );
                }, i * 100);
            }

            // 小猫跳跃动画
            cat.style.animation = 'none';
            setTimeout(() => {
                cat.style.animation = 'bounce 0.5s infinite alternate';
            }, 10);
        });

        // 动画循环
        function animate() {
            // 计算小猫位置（平滑跟随）
            const dx = mouseX - catX;
            const dy = mouseY - catY;
            const distance = Math.sqrt(dx * dx + dy * dy);
            
            // 速度因子
            const speed = 0.1;
            catX += dx * speed;
            catY += dy * speed;
            
            // 更新总距离
            if (distance > 1) {
                totalDistance += distance * speed;
                distanceEl.textContent = Math.floor(totalDistance);
                
                // 随机生成脚印
                if (Math.random() < 0.02) {
                    createPawPrint(catX, catY + 60);
                }
            }
            
            // 设置小猫位置
            cat.style.left = catX - 60 + 'px';
            cat.style.top = catY - 60 + 'px';
            
            // 根据移动方向翻转小猫
            if (dx > 5) {
                cat.style.transform = 'scaleX(1)';
            } else if (dx < -5) {
                cat.style.transform = 'scaleX(-1)';
            }
            
            requestAnimationFrame(animate);
        }

        // 初始化
        createStars();
        animate();

        // 初始位置
        cat.style.left = catX - 60 + 'px';
        cat.style.top = catY - 60 + 'px';
    

]]></description>
    </item>
        <item>
        <title><![CDATA[sk]]></title>
		<link><![CDATA[https://chishe.wodemo.net/entry/538478]]></link>
		<dc:creator><![CDATA[百晓生博客网 (@blog1)]]></dc:creator>
		<pubDate><![CDATA[Sun, 02 Jan 2022 08:56:20 -0800]]></pubDate>
        <description><![CDATA[. 1641142497026.jpg. 1641191708345.jpg. IMG_20220106_000256.png. 1642145493072.jpg]]></description>
    </item>
        <item>
        <title><![CDATA[送礼物]]></title>
		<link><![CDATA[https://chishe.wodemo.net/entry/538472]]></link>
		<dc:creator><![CDATA[百晓生博客网 (@blog1)]]></dc:creator>
		<pubDate><![CDATA[Sat, 01 Jan 2022 18:16:48 -0800]]></pubDate>
        <description><![CDATA[####  ①先扫描二维码下载一淘
####  ②使用支付宝账号登录
####  ③框内输入领取码得20元红包
#### ☞输入领取码&lt;textarea cols=&quot;15&quot;style=&quot;vertical-align:middle&quot;&gt;&amp;CEJ6F&lt;/textarea&gt;☜
####  ④☞花光四张优惠券☜
&lt;input type=&quot;text&quot;value=&quot;4 1:/啊和时我会他么是生对他家嘻一起来玩天天得现金，帮我點吧！τàiδЪàδ═&quot;&gt;
0 666:/嘻上出那后他么地然天到家哈来玩天天得现金，超多好礼mian费送！τāōьā0. ngq.png. ngp.pnghhh. Screenshot_2022-02-04-22-27-54-783_com.taobao.taobao.png]]></description>
    </item>
        <item>
        <title><![CDATA[说给5元才给3毛-糖果爱消除-]]></title>
		<link><![CDATA[https://chishe.wodemo.net/entry/538314]]></link>
		<dc:creator><![CDATA[百晓生博客网 (@blog1)]]></dc:creator>
		<pubDate><![CDATA[Mon, 22 Nov 2021 00:18:11 -0800]]></pubDate>
        <description><![CDATA[&lt;h3&gt;不让提现还要签到&lt;/h3&gt;
要看60广告。获得120活跃度才0.3毛钱💰
&lt;b&gt;还要实名&lt;/b&gt;. Screenshot_2021-11-22-16-15-21-941_com.tencent.mm.png]]></description>
    </item>
        <item>
        <title><![CDATA[发财鸭]]></title>
		<link><![CDATA[https://chishe.wodemo.net/entry/538275]]></link>
		<dc:creator><![CDATA[百晓生博客网 (@blog1)]]></dc:creator>
		<pubDate><![CDATA[Mon, 15 Nov 2021 02:43:37 -0800]]></pubDate>
        <description><![CDATA[养鸡免费得商品 [悠闲]HMLUX🎵DmbxLX[悠闲] . Screenshot_2021-11-13-00-05-22-478_com.taobao.litetao.png. Screenshot_2021-11-13-23-33-02-966_com.taobao.litetao.png. Screenshot_2021-11-15-18-46-04-306_com.taobao.litetao.png. Screenshot_2021-11-14-20-00-37-282_com.taobao.litetao.png. IMG_20211112_223056.png156. Screenshot_20211115-225751.png. IMG_20211115_224533.png. IMG_20211118_214012.jpg###  152. Screenshot_2021-12-08-20-25-41-826_com.taobao.litetao.png]]></description>
    </item>
        <item>
        <title><![CDATA[hlktv]]></title>
		<link><![CDATA[https://chishe.wodemo.net/entry/538211]]></link>
		<dc:creator><![CDATA[百晓生博客网 (@blog1)]]></dc:creator>
		<pubDate><![CDATA[Thu, 28 Oct 2021 20:22:47 -0700]]></pubDate>
        <description><![CDATA[. hlktvlogo.png]]></description>
    </item>
        <item>
        <title><![CDATA[wdsgd]]></title>
		<link><![CDATA[https://chishe.wodemo.net/entry/538210]]></link>
		<dc:creator><![CDATA[百晓生博客网 (@blog1)]]></dc:creator>
		<pubDate><![CDATA[Thu, 28 Oct 2021 20:22:08 -0700]]></pubDate>
        <description><![CDATA[. wdsgdlogo.png]]></description>
    </item>
        <item>
        <title><![CDATA[Untitled]]></title>
		<link><![CDATA[https://chishe.wodemo.net/entry/538209]]></link>
		<dc:creator><![CDATA[百晓生博客网 (@blog1)]]></dc:creator>
		<pubDate><![CDATA[Thu, 28 Oct 2021 20:21:26 -0700]]></pubDate>
        <description><![CDATA[. wdsktlogo.png]]></description>
    </item>
        <item>
        <title><![CDATA[tgaxc]]></title>
		<link><![CDATA[https://chishe.wodemo.net/entry/538208]]></link>
		<dc:creator><![CDATA[百晓生博客网 (@blog1)]]></dc:creator>
		<pubDate><![CDATA[Thu, 28 Oct 2021 20:20:57 -0700]]></pubDate>
        <description><![CDATA[. tgaxclogo.png. IMG_20211029_111938.png]]></description>
    </item>
        <item>
        <title><![CDATA[新发财鸭]]></title>
		<link><![CDATA[https://chishe.wodemo.net/entry/538083]]></link>
		<dc:creator><![CDATA[百晓生博客网 (@blog1)]]></dc:creator>
		<pubDate><![CDATA[Mon, 11 Oct 2021 08:11:30 -0700]]></pubDate>
        <description><![CDATA[&lt;div id=&quot;iv&quot;&gt;&lt;caption&gt;181&lt;/caption&gt;&lt;textarea type=&quot;text&quot;cols=&quot;10&quot;rows=&quot;20&quot;&gt;
养鸡免费得商品 [可怜]y60HX🎵H8FTih[可怜] &lt;/textarea&gt;
&lt;caption&gt;152&lt;/caption&gt;
&lt;textarea type=&quot;text&quot; cols=&quot;10&quot; rows=&quot;20&quot;&gt;  养鸡免费得商品 [亲亲]5AK6X🎵H8xfd9[愉快] &lt;/textarea&gt;&lt;caption&gt;
lt&lt;/caption&gt;&lt;textarea type=&quot;text&quot;cols=&quot;10&quot;rows=&quot;20&quot;&gt;来淘特赚免费商品 [悠闲]vbCXX🎵HMx7Pu[可怜]&lt;/textarea&gt;&lt;/div&gt;. KING_IMG_COMPRESS_20211011_23101971.png. IMG_20211014_013324.jpg. KING_IMG_COMPRESS_20211014_01402968.jpeg. 181HB.jpg. tb_image_share_1634182317754.jpg##  181母鸡呀

养鸡免费得商品 [可怜]y60HX🎵H8FTih[可怜] . 181母鸡.jpeg## 15

&lt;textarea&gt;养鸡免费得商品 [亲亲]5AK6X🎵H8xfd9[愉快] &lt;/textarea&gt;. KING_IMG_COMPRESS_20211015_08320323.jpeg#  lt

来淘特赚免费商品 [悠闲]vbCXX🎵HMx7Pu[可怜]. KING_IMG_COMPRESS_20211015_23472072.jpeg]]></description>
    </item>
        <item>
        <title><![CDATA[诸葛定天下-100元需要邀请100人大套路不能提现]]></title>
		<link><![CDATA[https://chishe.wodemo.net/entry/537958]]></link>
		<dc:creator><![CDATA[百晓生博客网 (@blog1)]]></dc:creator>
		<pubDate><![CDATA[Tue, 21 Sep 2021 07:44:13 -0700]]></pubDate>
        <description><![CDATA[5元需要登录14天提现太坑人 ，前面可以提现就是每天提现有限制. KING_IMG_COMPRESS_20210921_22451314.png##  5元提现套路深要邀请10人. KING_IMG_COMPRESS_20210923_13005912.png. KING_IMG_COMPRESS_20210923_13010048.png. KING_IMG_COMPRESS_20210923_13005969.png]]></description>
    </item>
        <item>
        <title><![CDATA[助力红包]]></title>
		<link><![CDATA[https://chishe.wodemo.net/entry/537837]]></link>
		<dc:creator><![CDATA[百晓生博客网 (@blog1)]]></dc:creator>
		<pubDate><![CDATA[Fri, 17 Sep 2021 03:58:33 -0700]]></pubDate>
        <description><![CDATA[&lt;h4 class=&quot;title-1&quot;&gt;助力红包&lt;/h4&gt;

&lt;input type=&quot;textarea&quot;value=&quot;jNOBnBBgvonDuvev】】;&quot;&gt;
. KING_IMG_COMPRESS_20211003_23321888.png. Screenshot_2021-10-02-23-25-33-237_com.taobao.litetao.png&lt;h1 class=&quot;h1h&quot;&gt;156国庆红包～&lt;/h1&gt;&lt;textarea cols=&quot;40&quot;rows=&quot;5&quot;class=&quot;area0&quot;&gt;是老铁就来淘特App，要什么有什么 [悠闲]sqRMX🎵IbcqrF[亲亲]&lt;/textarea&gt;]]></description>
    </item>
        <item>
        <title><![CDATA[主播养成记-有天花板-最高能赚2+1+0.5+0.3元]]></title>
		<link><![CDATA[https://chishe.wodemo.net/entry/537834]]></link>
		<dc:creator><![CDATA[百晓生博客网 (@blog1)]]></dc:creator>
		<pubDate><![CDATA[Thu, 16 Sep 2021 22:26:32 -0700]]></pubDate>
        <description><![CDATA[. zbycjlogo.jpg&lt;DOCTYPE HTML&gt;&lt;html lang=&quot;zh-cn&quot;charset=&quot;UTF-8&quot;&gt;&lt;head&gt;
&lt;title&gt;  &lt;/title&gt; &lt;/head&gt;&lt;body&gt;&lt;div id=&quot;h&quot;&gt;&lt;h3&gt;APP下载 &lt;/h3&gt;&lt;p&gt; 天花板：最高能赚2+1+0.5+0.3元现金&lt;/p&gt;

&lt;h2 class=&quot;title-1&quot;&gt;主播养成记&lt;/h2&gt;

. 1-jg.png. 2-thb-HB.png. 3-thb-tx.png. 4-jm.png. 5-id.png&lt;h4 class=&quot;title-1&quot;&gt;输入邀请码领取奖励&lt;/h4&gt;&lt;input type=&quot;textarea&quot;content=&quot;照顾&quot;value=&quot;NDgyNDgxMg==&quot;&gt;]]></description>
    </item>
        <item>
        <title><![CDATA[发财鸭]]></title>
		<link><![CDATA[https://chishe.wodemo.net/entry/537791]]></link>
		<dc:creator><![CDATA[百晓生博客网 (@blog1)]]></dc:creator>
		<pubDate><![CDATA[Mon, 06 Sep 2021 19:30:29 -0700]]></pubDate>
        <description><![CDATA[###  小米2-1-56. fcysewm_156.png. 156-yangmuji.jpg###  小米52-. IMG_20210913_213922.jpg### 养土鸡  
. IMG_20210913_213155.jpg###  养母鸡181
. KING_IMG_COMPRESS_20210914_06333539.png###  发财鸭 181. KING_IMG_COMPRESS_20210914_06333503.png. KING_IMG_COMPRESS_20210914_06333575.jpeg###  lc-sina
. KING_IMG_COMPRESS_20210914_06582837.png###  lc-sina发财鸭. KING_IMG_COMPRESS_20210914_08041823.png]]></description>
    </item>
        <item>
        <title><![CDATA[复方]]></title>
		<link><![CDATA[https://chishe.wodemo.net/entry/537638]]></link>
		<dc:creator><![CDATA[百晓生博客网 (@blog1)]]></dc:creator>
		<pubDate><![CDATA[Fri, 13 Aug 2021 00:47:09 -0700]]></pubDate>
        <description><![CDATA[]]></description>
    </item>
    </channel>
</rss>
