HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>AD的导航页</title>
    <link rel="stylesheet" href="styles.css">
    <link rel="icon" href="/images/icon_2.png" type="images">
</head>

<body background="/images/icon_2.png">
    <div class="container">
        <div class="typewriter">
            <h1>欢迎,请选择您要去的地方。</h1>
        </div>
        <p>WWW.ADLAMP.CN</p>
        <div class="buttons">
            <a href="https://blog.adlamp.cn" class="button white" target="_blank">我的博客</a>
            <a href="https://zfile.adlamp.cn" class="button yellow" target="_blank">私有存储</a>
            <a href="https://memos.adlamp.cn" class="button red" target="_blank">快速笔记</a>
            <a href="#" class="button green" target="_blank">微 信</a>
        </div> 
    </div>
    <div class="icp">
        <a href="https://beian.miit.gov.cn" class="icp">蜀ICP备2024077980号-1</a>
    </div>
    <!-- 引用代码请标注来源www.adlamp.cn -->
</body>
</html>

CSS

/* 设置body样式 */
/* 引用用代码请标注来源www.adlamp.cn */
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: url('/images/501.png') no-repeat center center fixed;
  background-size: cover;
  background-color: black;
  color: white;
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-position: center; /* 确保背景初始居中 */
}

.icp {
  position: fixed;       /* 将定位改为 fixed */
  bottom: 0;             /* 定位到窗口的底部 */
  width: 100%;           /* 宽度占满窗口 */
  display: flex;         /* 使用弹性布局 */
  justify-content: center; /* 水平居中内容 */
  align-items: center;   /* 垂直居中内容 */
  text-align: center;    /* 文本居中对齐 */
  font-size: 15px;       /* 字体大小设置为15像素 */
  color: rgba(165, 187, 255, 0.2); /* 设置文字颜色 */
  border-top: 1px solid rgba(165, 187, 255, 0.123); /* 添加边框 */
  background-color: rgba(0, 0, 0, 0.5); /* 设置背景颜色 */
  height: 50px;          /* 设置高度为50像素 */
  text-decoration: none; /* 移除下划线 */
  z-index: 1000;         /* 确保元素在其他内容之上 */
}


/* 容器样式,包含整体缩放 */
.container {
  padding-top: 8%;
  padding-left: 60px;
  transform: scale(1.7); /* 放大整体 */
  transform-origin: top left; /* 控制放大的中心点 */
}
/* 引用用代码请标注来源www.adlamp.cn */
/* 内容样式,左对齐 */
.content {
  text-align: left;
}

/* 标题样式 */
h1 {
  font-size: 2.5em; /* 字体大小 */
  margin-bottom: 0.5em; /* 底部外边距 */
}

/* 文本样式 */
p {
  font-size: 1.5em; /* 字体大小 */
  margin-bottom: 2em; /* 底部外边距 */
}

/* 按钮容器样式 */
.buttons {
  display: flex; /* 使用弹性布局 */
  gap: 2.5em; /* 按钮之间的间距 */
}

/* 通用按钮样式 */
.button {
  text-decoration: none; /* 移除下划线 */
  font-size: 1.2em; /* 字体大小 */
  padding: 0.30em 0.90em; /* 内边距 */
  border-radius: 26px; /* 边框圆角 */
  border: 1px solid transparent; /* 边框 */
  transition: all 0.3s ease; /* 过渡效果 */
  position: relative;
}
/* 引用用代码请标注来源www.adlamp.cn */
/* 按钮样式 */
.white {
  color: rgb(255, 255, 255); /* 文字颜色 */
  border-color: rgb(255, 255, 255); /* 边框颜色 */
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.45), 0 0 10px rgba(255, 255, 255, 0.45) inset; /* 外部和内部发光 */
}

.white:hover {
  border-color: rgb(255, 255, 255); /* 边框颜色 */
  box-shadow: 0 0 13px rgba(255, 255, 255, 0.55), 0 0 15px rgba(255, 255, 255, 0.55) inset; /* 外部和内部发光 */
}

/* 按钮样式 */
.red {
  color: rgb(253, 23, 83); /* 文字颜色 */
  border-color: rgb(253, 23, 83); /* 边框颜色 */
  box-shadow: 0 0 10px rgb(253, 23, 83, 0.5), 0 0 10px rgb(253, 23, 83, 0.5) inset; /* 外部和内部发光 */
}

.red:hover {
  border-color: rgb(253, 23, 83); /* 边框颜色 */
  box-shadow: 0 0 13px rgb(253, 23, 83, 0.7), 0 0 13px rgb(253, 23, 83, 0.7) inset; /* 外部和内部发光 */
}
/* 引用用代码请标注来源www.adlamp.cn */
/* 按钮样式 */
.yellow {
  color: rgb(255, 100, 28); /* 文字颜色 */
  border-color: rgb(255, 100, 28); /* 边框颜色 */
  box-shadow: 0 0 10px rgb(255,80,0, 0.5), 0 0 12px rgb(255,80,0, 0.5) inset; /* 外部和内部发光 */
}

.yellow:hover {
  border-color: rgb(255, 100, 28); /* 边框颜色 */
  box-shadow: 0 0 13px rgba(255, 81, 0, 0.67), 0 0 16px rgb(255,80,0, 0.67) inset; /* 外部和内部发光 */
}

/* 按钮样式 */
.green {
  color: rgb(5,195,99); /* 文字颜色 */
  border-color: rgb(5,195,99); /* 边框颜色 */
  box-shadow: 0 0 10px rgb(5,195,99, 0.5), 0 0 10px rgb(5,195,99, 0.5) inset; /* 外部和内部发光 */
}

.green:hover {
  border-color: rgb(5,195,99); /* 边框颜色 */
  box-shadow: 0 0 13px rgb(5,195,99, 0.7), 0 0 12px rgb(5,195,99, 0.7) inset; /* 外部和内部发光 */
}


.typewriter h1 {
  overflow: hidden;          /* 隐藏溢出部分 */
  white-space: nowrap;       /* 防止文本换行 */
  width: fit-content;        /* 自适应内容宽度 */
  border-right: 3px solid;   /* 模拟光标 */
  animation: 
      typing 1s steps(13, end), /* 逐个字符显示 */
      blink-caret 0.85s step-end infinite; /* 光标闪烁动画 */
}
/* 引用用代码请标注来源www.adlamp.cn */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: rgb(255, 255, 255); }
}
/* 引用用代码请标注来源www.adlamp.cn */