feat: 添加了版权信息

添加了版权信息
This commit is contained in:
fhzit 2025-03-14 22:25:19 +08:00
parent 29bb709eae
commit 44709af6ac

View File

@ -84,6 +84,17 @@
transform: translateY(0); transform: translateY(0);
} }
} }
/* 新增版权信息样式 */
.copyright {
position: absolute;
bottom: 10px;
width: 100%;
text-align: center;
font-size: 20px;
color: rgba(255, 255, 255, 0.8);
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
animation: fadeInUp 1s ease-in-out;
}
</style> </style>
</head> </head>
<body> <body>
@ -98,5 +109,8 @@
<a href="https://github.com/ExamAware/ExamSchedule" target="_blank" style="position: absolute; top: 10px; right: 10px; z-index: 1000;"> <a href="https://github.com/ExamAware/ExamSchedule" target="_blank" style="position: absolute; top: 10px; right: 10px; z-index: 1000;">
<img src="./github-icon.png" alt="GitHub" style="width: 30px; height: 30px;" title="在GitHub上查看源代码"> <img src="./github-icon.png" alt="GitHub" style="width: 30px; height: 30px;" title="在GitHub上查看源代码">
</a> </a>
<!-- 新增版权信息 -->
<div class="copyright">&copy; 2025 ExamAware</div>
</body> </body>
</html> </html>