首页
文章导航
导航
壁纸
留言板
更多
直播
友链
统计
关于
Search
1
Claw Cloud 免费容器平台部署哪吒面板教程
2 阅读
2
Serv00/HostUNO 域名邮箱教程 | 设置全域邮箱(Catch-All) | 提高发件可信度
2 阅读
3
经典老电影10部
1 阅读
4
【白嫖攻略】在cloudflare搭建域名邮箱并转发
1 阅读
5
一键虚拟化项目
1 阅读
默认
日常
学习
技术
登录
Search
标签搜索
cloudflare
白嫖
安装
脚本
CF
壁纸
图片
docker
Linux
Caddy
代码
哪吒
节点
域名
桌面壁纸
手机壁纸
NAT
LXC
邮箱
优选
ws01
累计撰写
115
篇文章
累计收到
44
条评论
首页
栏目
默认
日常
学习
技术
页面
文章导航
导航
壁纸
留言板
直播
友链
统计
关于
搜索到
90
篇与
的结果
2024-06-27
哪吒探针 美化透明代码【20250803修改】
一、哪吒探针 v1美化透明代码【个别参数自定义修改填入,不修改留空】1.前端自定义代码<script> const selectorButton = '#root > div > main > div.mx-auto.w-full.max-w-5xl.px-0.flex.flex-col.gap-4.server-info > section > div.flex.justify-center.w-full.max-w-\\[200px\\] > div > div > div.relative.cursor-pointer.rounded-3xl.px-2\\.5.py-\\[8px\\].text-\\[13px\\].font-\\[600\\].transition-all.duration-500.text-stone-400.dark\\:text-stone-500'; const selectorSection = '#root > div > main > div.mx-auto.w-full.max-w-5xl.px-0.flex.flex-col.gap-4.server-info > section'; const selector3 = '#root > div > main > div.mx-auto.w-full.max-w-5xl.px-0.flex.flex-col.gap-4.server-info > div:nth-child(3)'; const selector4 = '#root > div > main > div.mx-auto.w-full.max-w-5xl.px-0.flex.flex-col.gap-4.server-info > div:nth-child(4)'; let hasClicked = false; let divVisible = false; let swapping = false; function forceBothVisible() { const div3 = document.querySelector(selector3); const div4 = document.querySelector(selector4); if (div3 && div4) { div3.style.display = 'block'; div4.style.display = 'block'; } } function hideSection() { const section = document.querySelector(selectorSection); if (section) { section.style.display = 'none'; } } function tryClickButton() { const btn = document.querySelector(selectorButton); if (btn && !hasClicked) { btn.click(); hasClicked = true; setTimeout(forceBothVisible, 500); } } function swapDiv3AndDiv4() { if (swapping) return; swapping = true; const div3 = document.querySelector(selector3); const div4 = document.querySelector(selector4); if (!div3 || !div4) { swapping = false; return; } const parent = div3.parentNode; if (parent !== div4.parentNode) { swapping = false; return; } // 交换 div3 和 div4 的位置 parent.insertBefore(div4, div3); parent.insertBefore(div3, div4.nextSibling); swapping = false; } const observer = new MutationObserver(() => { const div3 = document.querySelector(selector3); const div4 = document.querySelector(selector4); const isDiv3Visible = div3 && getComputedStyle(div3).display !== 'none'; const isDiv4Visible = div4 && getComputedStyle(div4).display !== 'none'; const isAnyDivVisible = isDiv3Visible || isDiv4Visible; if (isAnyDivVisible && !divVisible) { hideSection(); tryClickButton(); setTimeout(swapDiv3AndDiv4, 100); } else if (!isAnyDivVisible && divVisible) { hasClicked = false; } divVisible = isAnyDivVisible; if (div3 && div4) { if (!isDiv3Visible || !isDiv4Visible) { forceBothVisible(); } } }); const root = document.querySelector('#root'); if (root) { observer.observe(root, { childList: true, attributes: true, subtree: true, attributeFilter: ['style', 'class'] }); } </script> <script> window.CustomBackgroundImage="https://9527.zabc.net/"; /* 页面背景图https://img.9527.nyc.mn */ window.$$nazhuaConfig = { hideWorldMap: true, }; window.ShowNetTransfer = "true"; /* 卡片显示上下行流量 */ window.DisableAnimatedMan = "true"; /* 关掉动画人物插图 */ window.CustomDesc ="MJJ:白嫖至上,低价优先。"; /* 自定义描述 */ window.CustomLinks = '[{"link":"https://vps.211119.xyz/","name":"VPS信息"}, {"link":"https://www.199881.xyz/","name":"导航"}, {"link":"https://boke.199881.xyz/","name":"博客"}]' </script> <script> var observer = new MutationObserver(function(mutationsList, observer) { var xpath = "/html/body/div/div/main/div[2]/section[1]/div[4]/div"; var container = document.evaluate(xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; if (container) { observer.disconnect(); var existingImg = container.querySelector("img"); if (existingImg) { container.removeChild(existingImg); } var imgElement = document.createElement("img"); imgElement.src = "https://img.mypi.co/9527abc/70aa2fa541c62baa7434a35d60cb7eb3.webp"; imgElement.style.position = "absolute"; imgElement.style.right = "-20px"; imgElement.style.top = "-85px"; imgElement.style.zIndex = "10"; imgElement.style.width = "90px"; container.appendChild(imgElement); } }); var config = { childList: true, subtree: true }; observer.observe(document.body, config); </script> 2.仪表板自定义代码:<script> // 禁用默认小人图(哪吒官方保留变量) window.DisableAnimatedMan = true; // 引入自定义字体(MiSans 字体,可替换为你喜欢的字体) const fontLink = document.createElement('link'); fontLink.rel = 'stylesheet'; fontLink.href = 'https://font.sec.miui.com/font/css?family=MiSans:400,700:MiSans'; document.head.appendChild(fontLink); // 修改左上角标题文本 “哪吒监控” -> “哪吒探针” const observerAdminTitle = new MutationObserver(mutations => { mutations.forEach(mutation => { mutation.addedNodes.forEach(node => { if (node.nodeType === 1) { const links = node.matches('.transition-opacity') ? [node] : node.querySelectorAll('.transition-opacity'); links.forEach(link => { const textNode = Array.from(link.childNodes).find(n => n.nodeType === Node.TEXT_NODE && n.textContent.trim() === '哪吒监控'); if (textNode) { textNode.textContent = '哪吒探针'; observerAdminTitle.disconnect(); } }); } }); }); }); observerAdminTitle.observe(document.body, { childList: true, subtree: true }); </script> <style> /* 自定义字体并添加白色阴影 */ * { font-family: 'HarmonyOS Sans', sans-serif !important; font-size: 16px; text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.9); /* 使用白色阴影增强对比度 */ } /* 仪表板背景图全覆盖 */ html, body { height: 100% !important; background: url("") no-repeat center center fixed !important; background-size: cover !important; } /* 顶部导航背景透明 + 模糊 */ .el-header { background-color: transparent !important; backdrop-filter: blur(4px); box-shadow: none !important; } /* 替换默认头像图(avatar) */ img[src*="https://api.dicebear.com/7.x/notionists/svg"] { content: url("") !important; width: 100px !important; height: auto !important; margin-top: -0px; } /* 替换左上角 logo 图标 */ img[src*="/dashboard/logo.svg"] { content: url("") !important; } /* 去掉页脚 */ footer { display: none !important; } /* 为主容器添加半透明背景 */ .el-container { background-color: rgba(255, 255, 255, 0.7) !important; /* 半透明白色背景 */ } /* 为卡片等组件设置更高透明度的背景 */ .el-card, .el-message-box, .el-dialog { background-color: rgba(255, 255, 255, 0.9) !important; } /* 针对黑色文字,添加白色阴影以增强对比度 */ .el-text, .el-button, .el-table, .el-form-item__label, .el-form-item__content, .el-menu-item, .el-submenu__title { color: #333 !important; /* 确保文字颜色为深色 */ text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8); /* 白色阴影 */ } /* 针对可能存在的浅色文字,添加黑色阴影 */ .el-text-light, .el-button--text, .el-link { color: #fff !important; /* 假设某些文字是浅色的 */ text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* 黑色阴影 */ } </style> 二、哪吒探针 v0美化透明代码<style> /* 背景图片 */ body { content: " " !important; background: fixed !important; z-index: -1 !important; top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important; background-position: top !important; background-repeat: no-repeat !important; background-size: cover !important; background-image: url(https://vip.199881.xyz/my/api2/) !important; font-family: Arial,Helvetica,sans-serif !important; } /* 大卡片https://image.dooo.ng/c/2024/05/13/66423846ca837.webp */ #app .ui.fluid.accordion { background-color: #fbfbfb26 !important; border-radius: 0.4rem !important; } /* 小卡片 */ .ui.four.cards>.card { border-radius: 0.6rem !important; background-color: #fafafaa3 !important; } /* 有点累状态进度条颜色 */ .ui.progress.warning .bar { background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%); !important; } /* 高负载状态进度条颜色 */ .ui.progress.error .bar { background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);important; } </style> <!-- 网页特效 - 樱花 --> <script src="https://cdn.jsdelivr.net/gh/mocchen/cssmeihua/js/yinghua.js"></script>
2024年06月27日
0 阅读
0 评论
0 点赞
2024-06-10
部署MJJ自己的信息聚合站 —— rss-reader改版搭建~(内含详细步骤)
部署MJJ自己的信息聚合站 —— rss-reader改版搭建~(内含详细步骤)本文摘自: topang 原项目 rss-reader 在原项目(旧版)基础上改动:自定义标题和描述列表高度一点样式预览 一、搭建准备:小鸡一键安装好dockercurl -fsSL https://get.docker.com | sh && ln -s /usr/libexec/docker/cli-plugins/docker-compose /usr/local/bin二、开始:1、创建文件夹,如“rrx”mkdir rrx2、进入文件夹cd rrx/3、创建文件:config.json(“listHeight”控制列表高度,源多可以试试300){ "values": [ "https://rss.nodeseek.com/", "https://hostloc.com/forum.php?mod=rss&fid=45&auth=389ec3vtQanmEuRoghE%2FpZPWnYCPmvwWgSa7RsfjbQ%2BJpA%2F6y6eHAx%2FKqtmPOg", "https://linux.do/latest.rss", "https://www.v2ex.com/feed/vps.xml", "https://rss.agag.us.kg/telegram/channel/@vps_track_share", "https://rss.agag.us.kg/telegram/channel/wawowiki", "https://rss.agag.us.kg/telegram/channel/XiangxiuNB", "https://plink.anyfeeder.com/jingjiribao", "https://plink.anyfeeder.com/guangmingribao", "https://plink.anyfeeder.com/people-daily", "https://plink.anyfeeder.com/newscn/whxw", "https://plink.anyfeeder.com/36kr" ], "refresh": 6, "autoUpdatePush": 7, "nightStartTime": "06:30:00", "nightEndTime": "19:30:00" }4、创建文件:docker-compose.yml【现已修改的源有:原版srcrs和其它修改源topang、huhengbo1992等,各有特点】a、srcrs原版源version: "3" services: server: image: srcrs/rss-reader:latest container_name: rss-reader restart: always ports: - "8880:8080" volumes: - "$PWD/config.json:/app/config.json"b、topang修改源version: "3" services: server: image: topang/rss-reader-mix:latest container_name: rss-reader-mix restart: always ports: - "8880:8080" volumes: - "$PWD/config.json:/app/config.json"c、huhengbo1992修改源version: "3" services: server: image: huhengbo1992/rss-reader:latest container_name: rss-reader restart: always ports: - "8880:8080" volumes: - "$PWD/config.json:/app/config.json"5、启动!docker-compose up -d访问8880端口(ip:8880)6、添加反代(Nginx配置文件添加在server{...}里面) location ^~ /{ proxy_pass http://127.0.0.1:8880; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header REMOTE-HOST $remote_addr; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $connection_upgrade; proxy_http_version 1.1; # proxy_hide_header Upgrade; add_header X-Cache $upstream_cache_status; #Set Nginx Cache set $static_fileHXsgUAWW 0; if ( $uri ~* "\.(gif|png|jpg|css|js|woff|woff2)$" ) { set $static_fileHXsgUAWW 1; expires 1m; } if ( $static_fileHXsgUAWW = 0 ) { add_header Cache-Control no-cache; } }其它,一些 RSS资源
2024年06月10日
0 阅读
0 评论
0 点赞
2024-06-02
免费二级域名,包括可托管到cf的二级域名
免费二级域名,包括可托管到cf的二级域名 可托管到cf的二级域名一、cloudns,对注册ip有严格要求注册地址:https://cloudns.net二、us.kg,打开速度慢,注册时不要多点,耐心等待,域名界后起之秀。注册地址:https://register.us.kg/注册步骤:1、到https://www.ssnzk.com/网页截图好后面用到的 KYC 图片2、打开https://register.us.kg/,选择注册,把上一步中的信息填写好,提交3、邮箱中点击验证4、登录网站,开始提交第一步中的KYC和相关信息选择 upload kyc documents to default server (recommended)Why register the .US.KG domain name:填入 blog或setup a website等Document Type:填入proof of address上传1中的KYC截图点击Submit等待提示Successful!,及实名审核完成;5、重新进行us.kg账户登录申请域名即可三、cc.ua免费二级域名,可选5年【看脸不删除帐号,不过删除帐号后只要别人没注册,域名缓存还有,号还是可用。设置4或6个NS记录和1个CNAME两种方法,其中加_acme-challenge两条,如果用邮箱,再加3条MX记录和1条TXT记录】免费注册:https://www.1gb.ua/付费注册:https://prosto.1gb.ua注册参考文章:https://www.aldsd.com/1gb-ua四、https://dot.nyc.mn/注册简单,才开放五、l53,选择 filegear-sg.me 和 ggff.net 后缀才可能托管,一年优惠码:newuser,好像要1-3个月登录一次,麻烦https://www.l53.net/已封车域名1、free.hr,现注册收费,但便宜https://subreg.cz/en/2、link域名,现收费https://www.dynadot.com/account/sign-in3、eu.org,管理员70多,没精神管理网站了,2023年5月后没审批https://nic.eu.org/4、dedyn.io,现在也可注册,但不能托管cf,费了,以前注册并托管好的可以继续免费使用https://desec.io/5、nyc.mn,要审核才能通过,才开始就结束了,申请通过的可以正常使用https://dot.nyc.mn/{dotted startColor="#ff6c6c" endColor="#1989fa"/}其它不能托管到cf的二级域名1、mydns.jp日本免费二级域名,注册简单。https://www.mydns.jp/2、dynv6免费二级域名https://dynv6.com/3、freemyip注册最简单的免费二级域名【保留子域名,每年必须至少更新一次 IP】https://freemyip.com/4、ydns.io免费二级域名https://ydns.io/5、com.mp免费二级域名https://www.registry.com.mp/6、日本mydns.jphttps://www.mydns.jp/【几天登录一次,不用了】7、freedomain,利用bug可申请30年使用https://freedomain.one/8、my.noip.com,要30天确认一次,也费了https://my.noip.com/还有一些,不写了,最后强调: 免费是最贵的,域名最好买一个
2024年06月02日
1 阅读
0 评论
0 点赞
2024-05-31
注册GCP150刀相关【有手就行】
注册GCP150刀相关【有手就行】地址: GCP 一路点下去就行,如果出现要验卡步骤就算了【或换个干净IP和环境再试】,换个号和窗口继续,手快有,手慢就要封车了。一、GCP 改成root密码登录方法1、先选择从浏览器打开ssh连接服务器2、切换到root账号,输入代码:sudo -i3、设置root密码,输入代码:passwd然后会要求输入新密码,然后再重复一次密码,输入密码的时候不会显示出来,所以直接输入密码,然后回车,再然后重复输入密码回车开启SSH权限1、CentOS和Debian通用,输入以下两条命令sed -i 's/PermitRootLogin no/PermitRootLogin yes/g' /etc/ssh/sshd_config sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config2、Ubuntu系统,输入以下两条命令sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/g' /etc/ssh/sshd_config sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config3、重启服务器,输入命令:reboot二、gcp亚洲速度较快各区台湾【tw】asia-east1 10.140.0.0/20香港【hk】asia-east2 10.170.0.0/20东京【tokyo】asia-northeast1 10.146.0.0/20大板【osaka】asia-northeast2 10.174.0.0/20首尔【seoul】asia-northeast3 10.178.0.0/20孟买asia-south1 10.160.0.0/20新德里asia-south2 10.190.0.0/20新加坡【sg】asia-southeast1 10.148.0.0/20加达asia-southeast2 10.184.0.0/20三、防火墙用:v4:0.0.0.0/0v6:::/0四、300刀创建免费200G注意事项1、地点必须是us-west(俗称美西)和另2种(不推荐)2、机型必须是e2-micro(2C 1G)3、磁盘选:标准和30G4、网络要换到:标准,us-west免费200G五、ip不好或被强时可更换ip从左上方选择 “VPC网络” 进入“ip地址”,操作方法看图
2024年05月31日
0 阅读
0 评论
0 点赞
2024-05-29
IDM 激活脚本
用于激活和重置Internet Download Manager试用版的开源工具一、特征IDM 冻结试用以及使用注册表项锁定方法激活即使安装 IDM 更新后,激活和试用状态仍然有效IDM 试用重置完全开源基于透明批处理脚本二、下载/如何使用?首先全新安装 Internet Download Manager 。确保已删除/卸载以前的破解/补丁(如果有)。之后按照以下步骤激活它激活选项目前在脚本中不起作用,请使用冻结试用选项来锁定终身 30 天试用期。方法-PowerShell右键单击 Windows 开始菜单并选择 PowerShell 或终端(不是 CMD)。复制粘贴以下代码并按 Enterirm https://massgrave.dev/ias | iex您将看到激活选项,请按照屏幕上的说明进行操作。就这样。
2024年05月29日
0 阅读
0 评论
0 点赞
2024-05-13
Gmail隐藏技能:一个账号如何变出99个邮箱身分,垃圾注册永远不再困扰你
Gmail隐藏技能:一个账号如何变出99个邮箱身分,垃圾注册永远不再困扰你我们日常生活中,为了一次性阅读论坛或网络文章,往往会注册一些临时账号,这类账号使用一次后就很少再登陆,但它们会不期而至地带来许多不必要的垃圾邮件。因此,许多人采取的策略是分开管理多个电子邮件账户:工作、社交和临时注册等不同目的使用的邮箱。这种做法的优点在于,一旦电子邮件地址列表泄露,被无穷无尽的垃圾信息轰炸,我们可以轻松抛弃那些"用后即弃"的邮箱,避免了直接与垃圾邮件作战的情况。那么,是否有更加便捷的方法来处理这一问题?答案是肯定的,特别是对于Gmail用户。Gmail提供了一个近乎魔法般的小功能,能够让我们仅需一组登录凭证,就能轻松管理数个看似不同的邮件账号。这项巧妙的技术,关键在于点号(.)与加号(+)这两个小伙伴。简单来说,我们可以在Gmail账户名中适当插入这两个符号,制造出多个外观上有所不同但实际上归于同一账户的电子邮箱。例如,如果您的原始Gmail地址是:"limin@gmail.com"为例,我们可以通过添加点号(.)和加号(+)来创造出许多别具一格的邮箱地址变体。这些变体对于发送邮件的网站来说是不同的邮箱账户,但实际上,所有邮件都会被发送到同一个"limin@gmail.com"邮箱中。以下是一些详细的变体示例:运用点号(.):l.imin@gmail.comli.min@gmail.comlim.in@gmail.comlimi.n@gmail.coml.i.m.in@gmail.com...等等,您可以在"limin"之间的任何位置添加点号。运用加号(+):limin+newsletter@gmail.comlimin+offers@gmail.comlimin+socialmedia@gmail.comlimin+shopping@gmail.comlimin+friends@gmail.com...等等,您可以在"limin"后添加加号和任何别名。这些变体利用了Gmail的内在特性,即它不会识别用户名中的点号,并会忽略加号及其后内容。通过这种方式,您不仅可以针对特定用途创建不同的邮箱变体,还能利用Gmail的筛选规则来自动组织和管理收到的邮件。这样一来,就可以在不影响主邮箱收件的同时分辩出不同服务发送的邮件,便于后续邮件管理和识别。向这些变体发送邮件,最终都会到达您原本的Gmail邮箱,因Gmail对于账户名中的点号视而不见,而加号则用作别名标记,方便您筛选并管理各种邮件。但值得注意的是,使用这个功能时有一些限制,例如:符号'.'和'+'可以自由组合使用,创建出各式各样的邮箱别名。'.'可在邮箱账户名的任意位置使用,而且可以使用多个。'+'不能置于邮箱账户名的起始位置。'+'可以放在账户名之后,也可以连续使用多个'+'。某些邮件客户端可能不支持用户名起始位置带点号的邮箱地址(例如:Outlook可能无法识别)。某些网站脚本可能不接受含有'+'的电子邮件地址,请在这种情况下使用'.'。这项功能给予了Gmail一种近似无限扩展性,您可以通过简单的邮箱地址编排,免去了重复注册和记忆多个账号密码的苦恼。相较于其他邮箱服务商,如Yahoo邮箱需要付费才能获得类似的"邮箱分身"服务,Gmail用户只需几个简单步骤即可享受同样的便利。结语:这样巧妙的邮箱管理技巧,无疑为我们的数字生活带来了更多的舒适和效率。现在,用一种更整洁的方式管理各种只用一次的注册邮箱,让日常维护邮箱变为一件轻松愉快的事,不再是一项繁重的任务。本文摘自:https://www.limin.studio/2024/04/gmail99.html
2024年05月13日
0 阅读
1 评论
0 点赞
2024-05-02
简洁而功能强大的音乐播放器
简洁而功能强大的音乐播放器 本文转自: 易航 H5播放器介 绍APlayer 是一个简洁漂亮、功能强大的 Html5 音乐播放器MetingJS 是为 APlayer 添加网易云、QQ音乐、酷狗音乐等支持的插件一、安装教程安装很简单,一共需要调用三个文件:APlayer.min.js APlayer.min.css Meting.min.js你可以使用 CDN 调用,只需要在 里面插入:<link href="https://cdn.bootcdn.net/ajax/libs/aplayer/1.10.1/APlayer.min.css" rel="stylesheet"> <script src="https://cdn.bootcdn.net/ajax/libs/aplayer/1.10.1/APlayer.min.js"></script>在 footer 里面插入:<script src="https://cdn.bootcdn.net/ajax/libs/meting/2.0.1/Meting.min.js"></script>当然,你可以将这些文件托管在自己的服务器,把上面的调用链接改成自己的就行了二、使用方法1、APlayer 原生用法先看一个最简单的例子<div id="aplayer"></div> <script type="text/javascript"> const ap = new APlayer({ container: document.getElementById('aplayer'), audio: [{ name: '你从未离去', artist: '白挺', url: 'https://doge.ottoli.cn/你从未离去.mp3', cover: 'https://doge.ottoli.cn/你从未离去.jpg' }] }); </script>在js 代码中:参数 container 值为 document.getElementById('aplayer') 意思是定义当前播放器容器 id 为 aplayer参数 audio 中有 4 个子参数,定义关于音频的相关参数:参数 name 定义音频名称参数 artist 定义艺术家名参数 url 指向音频文件的地址参数 cover 指向音频封面的地址然后,在需要使用播放器的地方,将容器 的 id 设置为参数 container 中设定的值即可2、MetingJS 的用法前面已经看到,APlayer 原生用法设置参数十分繁琐,而且只能调用音频文件直链,增加服务器开销。而使用 MetingJS 就很好地解决了这个问题先看一个最简单的例子:<meting-js server="netease" type="song" id="31365604" > </meting-js>一个 MetingJS 播放器至少需要三个参数:server 指定调用的 API ,可选 netease, tencent, kugou, xiami, baidu ,分别对应网易云音乐、QQ音乐、酷狗音乐、虾米音乐、百度音乐type 指定调用类型,可选 song, playlist, album, search, artist ,分别对应单曲、歌单、专辑、搜索结果、艺术家id 指定调用的 id ,一般可以在地址栏中找到当 type 选择的是个播放列表时,生成的播放器是这样的:播放列表默认是打开的,你可以使用参数 listFolded="true" 使其默认折叠当你设定 fixed="true" ,会生成一个吸附在页面左下角的播放器,就像我的博客左下角那个当你设定 mini="true" ,会生成一个 mini 播放器:全部参数说明请查阅 MetingJS 官方文档(其实除了三个必要参数其余都和 APlayer 原生参数一样)
2024年05月02日
0 阅读
0 评论
0 点赞
2024-04-29
RN服务器添加 IPV6 地址
RN服务器添加 IPV6 地址 请注意,对于 Ubuntu 和 Debian 实例,需要在配置后手动启用 IPV6。请按照以下步骤为您的服务器启用 IPv6 地址。通过 ssh 连接登录到您的服务器并在 sysctl.conf 文件中添加以下条目:nano /etc/sysctl.conf一直向下滚动,并在末尾添加以下行:net.ipv6.conf.all.autoconf = 0 net.ipv6.conf.all.accept_ra = 0 net.ipv6.conf.eth0.autoconf = 0 net.ipv6.conf.eth0.accept_ra = 0替换前备份net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1 要检查运行:sysctl -p然后尝试重启网络systemctl restart networking然后检查ping6 google.com如果仍然无法正常工作,请尝试重新启动您的 VPS。注意:最后,还要确保 /etc/sysctl.conf 文件中没有任何可能禁用 IPv6 连接的值。如果是这样,请务必将其注释掉,然后使用“sysctl -p”或重新启动 VPS 来刷新您的设置。
2024年04月29日
0 阅读
0 评论
0 点赞
1
...
8
9
10
...
12