标题: Windows 10多用户,为什么科学上网用tun模式每次都要重新加载防火墙规则?
作者: #root
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/827622
时间: 2025-07-30 18:15:00
摘要:
作者: #root
板块: #开发调优
编号:
827622帖子: https://linux.do/t/topic/827622
时间: 2025-07-30 18:15:00
摘要:
发现clah for windows只要使用TUN模式,每次都要重新加载防火墙规则(点击CFW里的哪个盾牌图标)。觉得很奇怪,譬如我在用户1里操作了可以科学上网了,注销并登入用户2又得重新来一遍才能科学上网。我用的tun模式是system,有人知道怎么解决吗?
标题: 网络小说大纲模板+各种素材合集,适合各类型小说
作者: #π皇
板块: #资源荟萃
编号:
帖子: https://linux.do/t/topic/827626
时间: 2025-07-30 18:16:54
摘要:
作者: #π皇
板块: #资源荟萃
编号:
827626帖子: https://linux.do/t/topic/827626
时间: 2025-07-30 18:16:54
摘要:
⇔⇔⇔⇔⇔ 下载链接 ⇔⇔⇔⇔⇔
pan.quark.cn
夸克网盘分享
夸克网盘是夸克推出的一款云服务产品,功能包括云存储、高清看剧、文件在线解压、PDF一键转换等。通过夸克网盘可随时随地管理和使用照片、文档、手机资料,目前支持Android、iOS、PC、iPad。
⇔⇔⇔⇔⇔ 更多热帖 ⇔⇔⇔⇔⇔
π皇的作品集
标题: 有无支持自定义信源 的 AI 搜索引擎
作者: #阿良 - github.com/glidea/zenfeed
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/827627
时间: 2025-07-30 18:17:40
摘要:
作者: #阿良 - github.com/glidea/zenfeed
板块: #搞七捻三
编号:
827627帖子: https://linux.do/t/topic/827627
时间: 2025-07-30 18:17:40
摘要:
比如指定搜索 L 站,v2ex
标题: 【福利再再加码--下班人福利】再次限量开放20人,下班前的狂欢!(6.30下班)
作者: #Master2
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/827639
时间: 2025-07-30 18:23:07
摘要:
作者: #Master2
板块: #福利羊毛
编号:
827639帖子: https://linux.do/t/topic/827639
时间: 2025-07-30 18:23:07
摘要:
数量有限,先到先得!
不要私聊我去要优惠码了,多注意L站的消息就行
工单不要提了,不会回复的(心累)
祝大家下班快乐
原贴:
【福利发放-发放完结】蒲公英免费机场,备用服务套餐(优惠卷减免金额)限量发放100人 - 福利羊毛 - LINUX DO
标题: 记一次AI跑团,太好玩啦
作者: #QianJueOnline
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/827648
时间: 2025-07-30 18:25:48
摘要:
作者: #QianJueOnline
板块: #搞七捻三
编号:
827648帖子: https://linux.do/t/topic/827648
时间: 2025-07-30 18:25:48
摘要:
Gemini跑团真有意思
标题: 为你的博客添加一个简约启动页
作者: #hubiao
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/827654
时间: 2025-07-30 18:28:35
摘要:
作者: #hubiao
板块: #开发调优
编号:
827654帖子: https://linux.do/t/topic/827654
时间: 2025-07-30 18:28:35
摘要:
代码
css
/* 防止开屏动画期间页面滚动和主内容闪烁 */
body.splash-active {
overflow: hidden;
}
/*
* 当 JS 移除 body.splash-active 类后,主内容区会平滑淡入。
* 请确保 '.index-container' 是您首页主内容区域的正确选择器。
*/
body.splash-active .index-container {
opacity: 0;
transition: opacity 0.8s ease-in-out;
}
/* 开屏动画容器 */
.splash-screen {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
position: fixed;
top: 0;
left: 0;
z-index: 9999;
background-color: #121212;
transition: background-color 1.5s cubic-bezier(0.7, 0, 0.3, 1);
/* 性能优化 */
will-change: background-color;
transform: translateZ(0); /* 启用硬件加速 */
backface-visibility: hidden;
}
/* 颜色反转时的状态 */
.splash-screen.invert-colors {
background-color: #ffffff;
}
.logo-text {
/* 优化字体栈:优先使用系统字体,确保快速加载和国内可访问性 */
font-family: "Times New Roman", "Songti SC", "SimSun", "serif", "STSong", "华文宋体", "宋体", serif;
font-weight: 500;
display: flex;
align-items: center;
font-size: clamp(40px, 12vw, 110px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
/* 添加字体渲染优化 */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
/* Logo 退场状态 */
.logo-text.hidden {
opacity: 0;
transform: translateY(-60px);
}
.logo-word {
display: flex;
}
.logo-word + .logo-word {
margin-left: clamp(15px, 4vw, 40px);
}
.char-container {
display: inline-block;
overflow: hidden;
vertical-align: bottom;
}
.logo-text span {
display: block;
transform: translateY(110%);
animation: reveal 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
color: #f0f0f0;
transition: color 1.5s cubic-bezier(0.7, 0, 0.3, 1);
/* 性能优化 */
will-change: transform, color;
transform: translateY(110%) translateZ(0); /* 硬件加速 */
}
/* 颜色反转时,字体颜色同步变化 */
.splash-screen.invert-colors .logo-text span {
color: #1a1a1a;
}
@keyframes reveal {
to { transform: translateY(0); }
}
/* 为 "Aoguxin Blog" 11个字母编排延迟 */
.logo-text .char1 { animation-delay: 0.2s; }
.logo-text .char2 { animation-delay: 0.3s; }
.logo-text .char3 { animation-delay: 0.4s; }
.logo-text .char4 { animation-delay: 0.5s; }
.logo-text .char5 { animation-delay: 0.6s; }
.logo-text .char6 { animation-delay: 0.7s; }
.logo-text .char7 { animation-delay: 0.8s; }
.logo-text .char8 { animation-delay: 0.9s; }
.logo-text .char9 { animation-delay: 1.0s; }
.logo-text .char10 { animation-delay: 1.1s; }
.logo-text .char11 { animation-delay: 1.2s; }
/* 移动设备优化 - 简化动画以提升性能 */
@media (max-width: 768px) {
.logo-text {
font-size: clamp(32px, 10vw, 80px);
}
/* 在小屏幕设备上减少动画复杂度 */
.logo-text span {
animation-duration: 1.0s;
}
}
/* 低性能设备优化 - 减少动画效果 */
@media (prefers-reduced-motion: reduce) {
.logo-text span {
animation: none;
transform: translateY(0);
}
.splash-screen {
transition: none;
}
.logo-text {
transition: none;
}
}
接下来就是javascript
/**
* 开屏动画控制脚本 (优化版)
* 功能:
* 1. 只在首页显示
* 2. 使用sessionStorage确保同一会话中只显示一次
* 3. 优化渲染时序,防止主内容闪烁
* 4. 优化性能检测,兼容移动设备
* 5. 健壮的错误处理
*/
(function() {
'use strict';
// 性能优化:如果设备性能较差,跳过动画
function isLowPerformanceDevice() {
// 检查设备内存(如果可用)
if (navigator.deviceMemory && navigator.deviceMemory < 2) {
console.log('跳过开屏动画:检测到低性能设备');
return true;
}
// 检查连接速度(如果可用)
if (navigator.connection && navigator.connection.effectiveType) {
const slowConnections = ['slow-2g', '2g'];
if (slowConnections.includes(navigator.connection.effectiveType)) {
console.log('跳过开屏动画:检测到慢速网络');
return true;
}
}
// [已修复] 不再将所有移动设备都视为低性能设备
return false;
}
// 检查是否为首页
funct
标题: 顺其自然的三级
作者: #Wig
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/827655
时间: 2025-07-30 18:28:57
摘要:
作者: #Wig
板块: #搞七捻三
编号:
827655帖子: https://linux.do/t/topic/827655
时间: 2025-07-30 18:28:57
摘要:
接下来:
申请linux.do邮箱
设置头像“小火苗”
体验2级没有的机器人(有没有这个功能)?
打开新天地,体验不一样的视界。
标题: Q群管家撤回的链接会离奇恢复‖希尔只得97昏!‖喵?我战胜了神墨佬!~ ww猫猫我一定会领养你的🥺‖这封面这标题 怼你脸上,你看不看?
作者: #Star星缘║林可欣
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/827656
时间: 2025-07-30 18:29:37
摘要:
作者: #Star星缘║林可欣
板块: #搞七捻三
编号:
827656帖子: https://linux.do/t/topic/827656
时间: 2025-07-30 18:29:37
摘要:
话题一
不清楚是不是人为 至少暂时没有回应
(已经上限了,省着点)
话题二
hello-username--disstella.on.websim.com
HELLO YHX2010!
标题不太行,后面改
(可能一忘就是三千载)
话题三
如题
话题四
我不看
标题: 笔试是在牛客网,用虚拟机会被检测到么,有佬友试过么
作者: #ang1
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/827659
时间: 2025-07-30 18:31:38
摘要:
作者: #ang1
板块: #搞七捻三
编号:
827659帖子: https://linux.do/t/topic/827659
时间: 2025-07-30 18:31:38
摘要:
如题 求回复 准备在虚拟机里做题
用gpt辅助一下