上传文件至 /
This commit is contained in:
commit
a72a7874b1
45
about.html
Normal file
45
about.html
Normal file
|
@ -0,0 +1,45 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>汐云安全工作室 - 关于我们</title>
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<h1>汐云安全工作室</h1>
|
||||
<p>热爱编程、科技、IT的年轻团队</p>
|
||||
</header>
|
||||
|
||||
<nav>
|
||||
<a href="index.html">主页</a>
|
||||
<a href="members.html">主要成员</a>
|
||||
<a href="portfolio.html">作品展示</a>
|
||||
<a href="">关于我们</a>
|
||||
<a href="xysoft.html">软件商店</a>
|
||||
<a href="sosuo.html">汐云搜索</a>
|
||||
<a href="yl.html">友情链接</a>
|
||||
<a href="mx.html">鸣谢</a>
|
||||
</nav>
|
||||
|
||||
<section id="about" class="content">
|
||||
<h2>关于我们</h2>
|
||||
<p>我们是一支年轻而充满活力的团队,致力于探索编程和科技的奥秘。</p>
|
||||
<!-- 添加关于信息 -->
|
||||
</section>
|
||||
|
||||
<div style="text-align: center;">
|
||||
<img src="picture/gj.png" alt="共建" style="display: inline-block;">
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<p>© 2022-2024 汐云安全工作室</p>
|
||||
<div class="ycyun">
|
||||
本网站由 <a href="https://www.rainyun.com/OTMxOTE=_"><img src="picture/rainyun.png"></a> 提供CDN加速/云服务器服务<br><br>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
48
index.html
Normal file
48
index.html
Normal file
|
@ -0,0 +1,48 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>汐云安全工作室 - 主页</title>
|
||||
<link rel="stylesheet" href="css/index-style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<h1>汐云安全工作室</h1>
|
||||
<p>热爱编程、科技、IT的年轻团队</p>
|
||||
</header>
|
||||
|
||||
<nav>
|
||||
<a href="">主页</a>
|
||||
<a href="members.html">主要成员</a>
|
||||
<a href="portfolio.html">作品展示</a>
|
||||
<a href="about.html">关于我们</a>
|
||||
<a href="xysoft.html">软件商店</a>
|
||||
<a href="sosuo.html">汐云搜索</a>
|
||||
<a href="yl.html">友情链接</a>
|
||||
<a href="mx.html">鸣谢</a>
|
||||
</nav>
|
||||
|
||||
<section id="home" class="content">
|
||||
<h2>欢迎来到汐云安全工作室</h2>
|
||||
<p>汐云安全工作室是一个由00后组建的工作室</p>
|
||||
<p>工作室的成员来自五湖四海.我们有初学者,有经验丰富的人,每个人都带对科技的热爱加入到这个大家庭中。</p>
|
||||
<p>我们致力于在不同领域中探索,包括Web开发、杀毒开发、浏览器开发....</p>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
<footer>
|
||||
<p>© 2022-2024 汐云安全工作室</p>
|
||||
<div class="custom">
|
||||
<div id="cc-myssl-id" style="text-align: center">
|
||||
</div>
|
||||
<div class="ycyun">
|
||||
本网站由 <a href="https://www.rainyun.com/OTMxOTE=_"><img src="picture/rainyun.png"></a> 提供CDN加速/云服务器服务<br><br>
|
||||
|
||||
</div>
|
||||
</div> </div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
164
index1.html
Normal file
164
index1.html
Normal file
|
@ -0,0 +1,164 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>汐云记事本下载</title>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body {
|
||||
font-family: '微软雅黑', sans-serif;
|
||||
background-color: #f4f4f4;
|
||||
color: #333;
|
||||
}
|
||||
.container {
|
||||
width: 80%;
|
||||
margin: 50px auto;
|
||||
background-color: #fff;
|
||||
padding: 40px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
animation: fadeInUp 1s ease-out;
|
||||
}
|
||||
@keyframes fadeInUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
.header {
|
||||
text-align: center;
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
.header h1 {
|
||||
font-size: 36px;
|
||||
animation: slideInLeft 1s ease-out;
|
||||
}
|
||||
@keyframes slideInLeft {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateX(-100px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
.header p {
|
||||
font-size: 20px;
|
||||
color: #666;
|
||||
animation: slideInRight 1s ease-out;
|
||||
}
|
||||
@keyframes slideInRight {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateX(100px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
.download-btn {
|
||||
display: inline-block;
|
||||
margin: 20px 0;
|
||||
padding: 15px 30px;
|
||||
background-color: #007bff;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
border-radius: 4px;
|
||||
font-size: 18px;
|
||||
transition: background-color 0.3s, transform 0.3s;
|
||||
animation: bounceIn 1s ease-out;
|
||||
}
|
||||
.download-btn:hover {
|
||||
background-color: #0056b3;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
@keyframes bounceIn {
|
||||
from, 20%, 40%, 60%, 80%, to {
|
||||
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
||||
}
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: scale3d(0.3, 0.3, 0.3);
|
||||
}
|
||||
20% {
|
||||
transform: scale3d(1.1, 1.1, 1.1);
|
||||
}
|
||||
40% {
|
||||
transform: scale3d(0.9, 0.9, 0.9);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: scale3d(1.03, 1.03, 1.03);
|
||||
}
|
||||
80% {
|
||||
transform: scale3d(0.97, 0.97, 0.97);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
}
|
||||
.features {
|
||||
padding: 20px 0;
|
||||
}
|
||||
.feature-item {
|
||||
padding: 15px;
|
||||
border-bottom: 1px solid #ddd;
|
||||
animation: fadeIn 1s ease-out;
|
||||
}
|
||||
@keyframes fadeIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
.feature-item h3 {
|
||||
font-size: 22px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.feature-item p {
|
||||
font-size: 16px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="header">
|
||||
<h1>汐云记事本,一个简单的记事本</h1>
|
||||
<p>汐云记事本是一款简洁高效的记事本软件,帮助您轻松记录和管理日常笔记。</p>
|
||||
</div>
|
||||
<a href="exe/汐云记事本.exe" class="download-btn" download>立即下载</a>
|
||||
<div class="features">
|
||||
<div class="feature-item">
|
||||
<h3>简洁设计</h3>
|
||||
<p>汐云记事本采用简洁的设计风格,界面清新,操作简便,让您专注于记录内容。</p>
|
||||
</div>
|
||||
<div class="feature-item">
|
||||
<h3>高效管理</h3>
|
||||
<p>支持分类管理、标签标记、快捷搜索等功能,帮助您高效管理和查找笔记。</p>
|
||||
</div>
|
||||
<div class="feature-item">
|
||||
<h3>多平台支持</h3>
|
||||
<p>汐云记事本支持Windows、Mac、Linux等多个平台,满足不同用户的需求。(bushi)</p>
|
||||
</div>
|
||||
<div class="feature-item">
|
||||
<h3>数据安全</h3>
|
||||
<p>所有数据本地存储,确保您的笔记安全可靠,不会被上传到云端。</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
121
index2.html
Normal file
121
index2.html
Normal file
|
@ -0,0 +1,121 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>宇晨电脑管家下载</title>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body {
|
||||
font-family: '微软雅黑', sans-serif;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
.container {
|
||||
width: 80%;
|
||||
margin: 50px auto;
|
||||
background-color: #fff;
|
||||
padding: 40px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.header {
|
||||
text-align: center;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
.header h1 {
|
||||
font-size: 36px;
|
||||
color: #333;
|
||||
}
|
||||
.header p {
|
||||
font-size: 18px;
|
||||
color: #666;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.download-btn {
|
||||
display: inline-block;
|
||||
width: 200px;
|
||||
background-color: #007bff;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
padding: 10px 20px;
|
||||
border-radius: 4px;
|
||||
font-size: 18px;
|
||||
text-decoration: none;
|
||||
transition: background-color 0.3s;
|
||||
margin: 20px;
|
||||
animation: slideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s 1 normal forwards, bounceIn 1s ease 0.5s infinite alternate;
|
||||
}
|
||||
.download-btn:hover {
|
||||
background-color: #0056b3;
|
||||
}
|
||||
.features {
|
||||
padding: 20px 0;
|
||||
}
|
||||
.feature-item {
|
||||
margin-bottom: 20px;
|
||||
padding: 10px;
|
||||
background-color: #f9f9f9;
|
||||
border-radius: 4px;
|
||||
animation: fadeIn 1s ease-in-out 1s 1 normal forwards;
|
||||
}
|
||||
.feature-item:nth-child(1) { animation-delay: 1.5s; }
|
||||
.feature-item:nth-child(2) { animation-delay: 2s; }
|
||||
.feature-item:nth-child(3) { animation-delay: 2.5s; }
|
||||
|
||||
.feature-item h3 {
|
||||
font-size: 20px;
|
||||
color: #333;
|
||||
}
|
||||
.feature-item p {
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0; }
|
||||
to { opacity: 1; }
|
||||
}
|
||||
|
||||
@keyframes slideIn {
|
||||
0% { transform: translateX(-100px) rotate(-30deg); opacity: 0; }
|
||||
100% { transform: translateX(0) rotate(0deg); opacity: 1; }
|
||||
}
|
||||
|
||||
@keyframes bounceIn {
|
||||
0%, 20%, 40%, 60%, 80%, 100% { transform: translateY(0); }
|
||||
50% { transform: translateY(-30px); }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="header">
|
||||
<h1>宇晨电脑管家下载</h1>
|
||||
<p>为您提供最新、最稳定的软件版本</p>
|
||||
</div>
|
||||
<div style="text-align: center;">
|
||||
<a href="exe/宇晨电脑管家安装包1.6.1.3.1.exe" class="download-btn" download>立即下载</a>
|
||||
<a href="exe/bdk.7z" class="download-btn" download style="background-color: #28a745;">病毒库下载</a>
|
||||
</div>
|
||||
<div class="features">
|
||||
<div class="feature-item">
|
||||
<h3>功能特点1</h3>
|
||||
<p>拥有病毒查杀能力</p>
|
||||
</div>
|
||||
<div class="feature-item">
|
||||
<h3>功能特点2</h3>
|
||||
<p>能进行图片格式转换</p>
|
||||
</div>
|
||||
<div class="feature-item">
|
||||
<h3>功能特点3</h3>
|
||||
<p>还有更多的功能等待着你的探索</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
93
members.html
Normal file
93
members.html
Normal file
|
@ -0,0 +1,93 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>汐云安全工作室 - 主要成员</title>
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<h1>汐云安全工作室</h1>
|
||||
<p>热爱编程、科技、IT的年轻团队</p>
|
||||
</header>
|
||||
|
||||
<nav>
|
||||
<a href="index.html">主页</a>
|
||||
<a href="">主要成员</a>
|
||||
<a href="portfolio.html">作品展示</a>
|
||||
<a href="about.html">关于我们</a>
|
||||
<a href="xysoft.html">软件商店</a>
|
||||
<a href="sosuo.html">汐云搜索</a>
|
||||
<a href="yl.html">友情链接</a>
|
||||
<a href="mx.html">鸣谢</a>
|
||||
</nav>
|
||||
|
||||
<section id="members" class="content">
|
||||
<h2>主要成员</h2>
|
||||
|
||||
<div class="member">
|
||||
<img src="picture/KLTS.bmp" alt="ZCZ">
|
||||
<h3>姓名: KuaiLeTianShi</h3>
|
||||
<p>职位: 室长</p>
|
||||
<p>来自: 中国山东</p>
|
||||
<p>性别: 男</p>
|
||||
<p>简介: 不擅长写简介</p>
|
||||
</div>
|
||||
<div class="member">
|
||||
<img src="picture/Stay with me.bmp" alt="ZCZ">
|
||||
<h3>姓名: 朝夕 - Stay with me</h3>
|
||||
<p>职位: 服务器提供</p>
|
||||
<p>来自: 中国山东</p>
|
||||
<p>性别: 男</p>
|
||||
<p>简介: 无</p>
|
||||
</div>
|
||||
<div class="member">
|
||||
<img src="picture/Kris.bmp" alt="YZ">
|
||||
<h3>姓名: Kris谭</h3>
|
||||
<p>职位: 副室长</p>
|
||||
<p>来自: 中国湖北</p>
|
||||
<p>性别: 男</p>
|
||||
<p>简介: 资深的科技爱好者,喜欢各种折腾各种的东西,擅长使用C++,C,Python,HTML......</p>
|
||||
</div>
|
||||
<div class="member">
|
||||
<img src="picture/ZYBPZ.bmp" alt="ZCZ">
|
||||
<h3>姓名: 自由奔跑者</h3>
|
||||
<p>职位: 硬件</p>
|
||||
<p>来自: 中国江苏</p>
|
||||
<p>性别: 男</p>
|
||||
<p>简介: 暂无</p>
|
||||
</div>
|
||||
</div> <div class="member">
|
||||
<img src="picture/Player.bmp" alt="YYC">
|
||||
<h3>姓名: Player</h3>
|
||||
<p>职位: 图标设计</p>
|
||||
<p>来自: 中国内蒙古</p>
|
||||
<p>性别: 男</p>
|
||||
<p>简介:一个图标设计师</p>
|
||||
</div>
|
||||
<div class="member">
|
||||
<img src="picture/SYSTEM-CMD.bmp" alt="YYC">
|
||||
<h3>姓名: SYSTEM-CMD</h3>
|
||||
<p>职位: 成员</p>
|
||||
<p>来自: 中国上海</p>
|
||||
<p>性别: 男</p>
|
||||
<p>简介:无</p>
|
||||
</div>
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<p>© 2022-2024 汐云安全工作室</p>
|
||||
<div class="custom">
|
||||
<div class="ycyun">
|
||||
本网站由 <a href="https://www.rainyun.com/OTMxOTE=_"><img src="picture/rainyun.png"></a> 提供CDN加速/云服务器服务<br><br>
|
||||
|
||||
</div>
|
||||
</div> </div>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user