diff --git a/wiki/pages/home.html b/wiki/pages/home.html
index 592a2e778cb1489af457bb5bd790e8818971c181..0103c40c6d36913c2c4fd55173089d0d6932a970 100644
--- a/wiki/pages/home.html
+++ b/wiki/pages/home.html
@@ -354,7 +354,7 @@
 </body>
 
 <script>
-  // 颜色渐变函数
+  // 颜色渐变
   function interpolateColor(color1, color2, factor) {
     const r1 = parseInt(color1.substring(1, 3), 16);
     const g1 = parseInt(color1.substring(3, 5), 16);
@@ -368,17 +368,14 @@
     return `#${r.toString(16).padStart(2, '0')}${g.toString(16).padStart(2, '0')}${b.toString(16).padStart(2, '0')}`;
   }
 
-  // 滚动事件处理函数
   function handleScroll() {
     const scrollPosition = window.scrollY;
     const documentHeight = document.documentElement.scrollHeight - window.innerHeight;
     const scrollPercentage = scrollPosition / documentHeight;
     
-    // 假设每个内容块的高度大约是视口高度的1.5倍
     const cycleLength = window.innerHeight * 1.5;
     const cyclePosition = (scrollPosition % cycleLength) / cycleLength;
     
-    // 使用正弦函数创建平滑的周期性变化
     const factor = (Math.sin(cyclePosition * Math.PI * 2) + 1) / 2;
     
     const color = interpolateColor("#FFFFFF", "#FFE4E1", factor);