粉粉
https://eeoopinkyy.cc/pink/index.php/vod/type/id/197.html
分享者: wen-jun-in (12459)发布时间: 16小时前
|!免责│本书源只提供代码进行技术│
│!声明│交流,请于24小时后删除│
{
"articleStyle": 0,
"cacheFirst": false,
"customOrder": 14,
"enableJs": true,
"enabled": true,
"enabledCookieJar": true,
"lastUpdateTime": 1773939133675,
"loadWithBaseUrl": true,
"preload": false,
"ruleArticles": ".vod[2:23]",
"ruleContent": "<js>\n\/\/ 提取m3u8链接\nvar m3u8Match = result.match(\/\"([^\"]*?index\\.m3u8[^\"]*)\"\/i) \n || result.match(\/'([^']*?index\\.m3u8[^']*)'\/i);\n\nvar p = '';\nif (m3u8Match) {\n var u = m3u8Match[1]\n .replace(\/\\\\\\\/\/g, '\/') \/\/ \\\/ → \/\n .replace(\/\\\\\\\\\/g, '\\\\') \/\/ \\\\ → \\\n .trim();\n \n \/\/ 补全协议\n if (u.startsWith('\/\/')) {\n u = 'https:' + u;\n } else if (!u.startsWith('http')) {\n \/\/ 需要基础URL,这里假设当前页面URL在result中或需要传入\n u = 'https:\/\/' + u; \/\/ 简化处理,或根据实际需求调整\n }\n p = u;\n}\n\n\/\/ 标题:从 span.tx-flex-sh > a 的 title 属性获取\nvar t = java.getString('.title.1 @text') || '未知标题';\n\n\/\/ 标签:从 meta[name=\"description\"] 的 content 获取 \nvar b = java.getString('meta[name=\"description\"]@content') || '';\nvar updateIndex = b.indexOf('更新时间');\nif (updateIndex !== -1) {\nvar d = b.substring(updateIndex); \/\/ 保留\"更新时间\"及之后的内容\n}\n\n`<!DOCTYPE html>\n<html>\n<head>\n<meta charset=\"utf-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n<title>${t}<\/title>\n<style>\n*{margin:0;padding:0;box-sizing:border-box}\nbody{font-family:-apple-system,sans-serif;background:#f0f9ff;padding:10px}\n.v-box{max-width:800px;margin:0 auto;background:white;border-radius:12px;box-shadow:0 5px 15px rgba(0,0,0,0.1);overflow:hidden}\n.header{padding:12px;border-bottom:1px solid #eee;display:flex;flex-wrap:wrap;justify-content:space-between}\n.title{font-size:18px;font-weight:600;margin-bottom:8px;width:100%}\n.tags{color:#5f6368;font-size:14px;flex:1;min-width:60%;word-break:break-all}\n.time{color:#5f6368;font-size:14px;text-align:right;flex-basis:35%}\n.v-wrap{position:relative;padding-top:56.25%;background:#000}\n.video{position:absolute;top:0;left:0;width:100%;height:100%}\n.footer{padding:8px;text-align:center;color:#5f6368;font-size:13px}\n.info-box{padding:15px;font-size:14px;line-height:1.6}\n.info-box p{margin:8px 0}\n.hint{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background:rgba(0,0,0,0.7);color:#fff;padding:12px 20px;border-radius:20px;font-size:1.1rem;z-index:10;display:none}\n.controls{position:absolute;top:0;left:0;width:100%;height:4px;background:rgba(255,255,255,0.3);z-index:5;transition:opacity 0.3s}\n.progress{height:100%;background:#4a9eff;width:0}\n<\/style>\n<\/head>\n<body>\n<div class=\"v-box\">\n<div class=\"header\">\n<div class=\"title\">${t}<\/div>\n<div class=\"tags\">${d}<\/div>\n<div class=\"time\" id=\"timeDisplay\">00:00\/00:00<\/div><\/div>\n<div class=\"v-wrap\">\n<div class=\"controls\"><div class=\"progress\" id=\"progressBar\"><\/div><\/div>\n<div class=\"hint\" id=\"hint\">快进中 >><\/div>\n<video class=\"video\" id=\"v\" controls playsinline>\n<source src=\"${p}\" type=\"application\/x-mpegURL\">您的浏览器不支持HTML5视频\n<\/video>\n<\/div>\n<div class=\"footer\">滑动调整进度 | 长按2倍速<\/div>\n<\/div>\n<script>\nvar v = document.getElementById('v');\nvar tDisplay = document.getElementById('timeDisplay');\nvar pBar = document.getElementById('progressBar');\nvar hint = document.getElementById('hint');\nvar startX = 0, startTime = 0;\nvar longPressTimer;\nvar sensitivity = 0.1;\nvar longPressTime = 500;\nvar hintDuration = 2000;\nfunction updateTime() {\nif (!v.duration) return;\nvar m1 = Math.floor(v.currentTime \/ 60);\nvar s1 = Math.floor(v.currentTime % 60);\nvar m2 = Math.floor(v.duration \/ 60);\nvar s2 = Math.floor(v.duration % 60);\ntDisplay.textContent = m1 + ':' + (s1 < 10 ? '0' : '') + s1 + '\/' + m2 + ':' + (s2 < 10 ? '0' : '') + s2;\npBar.style.width = (v.currentTime \/ v.duration) * 100 + '%';}\nv.addEventListener('timeupdate', updateTime);\nv.addEventListener('loadedmetadata', updateTime);\nv.addEventListener('touchstart', function(e) {\nstartX = e.touches[0].clientX;\nstartTime = Date.now();\nif (longPressTimer) clearTimeout(longPressTimer);\nhint.style.display = 'none';\nlongPressTimer = setTimeout(function() {\nv.playbackRate = 2.0;\nhint.style.display = 'block';\nsetTimeout(function() { hint.style.display = 'none'; }, hintDuration);}, longPressTime);});\nv.addEventListener('touchmove', function(e) {\ne.preventDefault();\nclearTimeout(longPressTimer);\nvar diffX = e.touches[0].clientX - startX;\nvar change = diffX * sensitivity * v.duration \/ 100;\nv.currentTime = Math.max(0, Math.min(v.currentTime + change, v.duration));\nstartX = e.touches[0].clientX;updateTime();});\nv.addEventListener('touchend', function() {\nv.playbackRate = 1.0;\nclearTimeout(longPressTimer);});\n<\/script>\n<\/body>\n<\/html>`\n<\/js>\n",
"ruleImage": "img@data-original",
"ruleLink": "a@href",
"ruleNextPage": ".pageitem.-1@href",
"ruleTitle": "a@text",
"showWebLog": false,
"singleUrl": false,
"sortUrl": "自拍::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/198\/page\/{{page}}.html\n搜索::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/search\/page\/{{page}}\/wd\/{{source.getVariable()}}.html\n吃瓜::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/search\/page\/{{page}}\/wd\/吃瓜.html\n国产::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/197\/page\/{{page}}.html\n国产视频::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/199.html\n国产传媒::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/200.html\n国产裸聊::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/201.html\n国产直播::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/202.html\n国产偷拍::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/203.html\n国产大制作::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/204.html\n国产主播::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/205.html\n蜜桃传媒::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/217.html\n天美传媒::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/218.html\n乌鸦传媒::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/219.html\n星空传媒::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/220.html\n乐播传媒::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/221.html\n大象传媒::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/222.html\n映画传媒::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/223.html\n皇家华人::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/208.html\n精东影业::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/209.html\n成人头条::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/210.html\n免子先生::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/211.html\n杏吧原创::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/212.html\n91制片厂::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/213.html\n开心鬼传媒::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/214.html\n黑料网曝::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/181.html\n会所技师::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/182.html\n探花约炮::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/183.html\n淫妻绿帽::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/184.html\n制服诱惑::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/185.html\n重口猎奇::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/186.html\n强奸乱伦::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/187.html\n精品甄之::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/190.html\n网曝黑料::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/191.html\n明星换脸::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/192.html\n女优明星::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/193.html\n韩国主播::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/194.html\n网红主播::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/195.html\n群交淫乱::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/196.html\n巨乳美乳::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/244.html\n高清名优::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/245.html\n人妻熟女::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/246.html\n中文字幕::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/247.html\nSM调教::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/248.html\nVR视角::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/249.html\nAV解说::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/250.html\n日本无码::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/235.html\n欧美性爱::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/236.html\n欧美无码::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/237.html\n高清有码::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/238.html\n日本素人::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/239.html\n伦理三级::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/240.html\n动漫精选::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/241.html\n乱伦毁三观::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/226.html\n淫乱学生妹::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/227.html\n玩偶姐姐::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/228.html\n糖心Vlog::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/229.html\n萝莉社::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/230.html\n性视界::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/231.html\nPsychoPorn::https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/232.html",
"sourceComment": "┍ 书源作者:闻君三月 ┒\n├───┬────────────┤\n│!免责│本书源只提供代码进行技术│\n│!声明│交流,请于24小时后删除│\n└────────────────┘",
"sourceIcon": "https:\/\/ico.img12345.com\/jt\/favicon.png",
"sourceName": "粉粉",
"sourceUrl": "https:\/\/eeoopinkyy.cc\/pink\/index.php\/vod\/type\/id\/197.html",
"type": 0
}