You've already forked KernelSU-Next
mirror of
https://github.com/KernelSU-Next/KernelSU-Next.git
synced 2025-08-27 23:46:34 +00:00
* add README_TW * Update README_CN.md * add Simplified Chinese for website add Simplified Chinese for website fix some mistakes in README_CN
112 lines
5.1 KiB
HTML
112 lines
5.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
|
<title>主页 | KernelSU Next</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap" rel="stylesheet">
|
|
<link rel="icon" href="assets/icons/ksu-next-tab.png" type="image/x-icon">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
|
<link rel="stylesheet" href="assets/css/main.css">
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Navbar -->
|
|
<nav class="navbar navbar-expand-md sticky-top py-3">
|
|
<div class="container">
|
|
<a class="navbar-brand d-flex align-items-center" href="#">
|
|
<span>KernelSU Next</span>
|
|
</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarResponsive">
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link text-light" href="#">主页</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link text-light" href="#installation">安装</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link text-light" href="pages/features.html">特性</a>
|
|
</li>
|
|
<li class="nav-item"></li>
|
|
<a class="nav-link text-light" href="pages/devices.html">设备</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="https://github.com/rifsxd/KernelSU-Next" target="_blank">
|
|
<i class="fab fa-github fa-lg"></i>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Header -->
|
|
<header>
|
|
<div class="container text-center">
|
|
<div class="header-icon">
|
|
<img src="assets/icons/ksu-next.png" width="80" height="80">
|
|
</div>
|
|
<h1 class="fw-bold">KernelSU Next</h1>
|
|
<p class="lead">安卓基于内核的 Root 方案</p>
|
|
<p>支持从 4.4 到 6.6 的大多数安卓内核</p>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Installation Section -->
|
|
<section id="installation" class="py-5">
|
|
<div class="container">
|
|
<h2 class="text-center mb-4">安装</h2>
|
|
<p class="text-center">在内核目录的根目录下针对不同的安装选项来运行下列命令</p>
|
|
<h3 class="mt-4">最新发行版本</h3>
|
|
<div class="highlight mt-3">
|
|
<code>curl -LSs "https://raw.githubusercontent.com/rifsxd/KernelSU-Next/next/kernel/setup.sh" | bash -</code>
|
|
<button class="btn btn-copy mt-2" onclick="copyToClipboard(this)">复制</button>
|
|
</div>
|
|
<h3 class="mt-4">Next 分支(开发版本)</h3>
|
|
<div class="highlight mt-3">
|
|
<code>curl -LSs "https://raw.githubusercontent.com/rifsxd/KernelSU-Next/next/kernel/setup.sh" | bash -s next</code>
|
|
<button class="btn btn-copy mt-2" onclick="copyToClipboard(this)">复制</button>
|
|
</div>
|
|
<h3 class="mt-4">指定版本标签</h3>
|
|
<div class="highlight mt-3">
|
|
<code>curl -LSs "https://raw.githubusercontent.com/rifsxd/KernelSU-Next/next/kernel/setup.sh" | bash -s v1.0.2-R14</code>
|
|
<button class="btn btn-copy mt-2" onclick="copyToClipboard(this)">复制</button>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Contact Information Section -->
|
|
<section id="contact" class="py-5">
|
|
<div class="container text-center">
|
|
<h2 class="mb-4">联系我们</h2>
|
|
<p>如果您有任何问题或需要支持,请随时联系我们:</p>
|
|
<div class="contact-icons">
|
|
<a href="https://github.com/rifsxd/KernelSU-Next/issues" target="_blank">
|
|
<i class="fab fa-github"></i>
|
|
</a>
|
|
<a href="https://t.me/ksunext_discussions" target="_blank">
|
|
<i class="fab fa-telegram-plane"></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer class="text-center">
|
|
<div class="container">
|
|
<p>© 2025 KernelSU Next 团队。保留所有权利。在 <a href="https://github.com/rifsxd/KernelSU-Next" target="_blank">GitHub</a>上查看源代码</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="assets/js/copy.min.js"></script>
|
|
</body>
|
|
|
|
</html>
|