新增: 壁纸切换(主题/本地图片/Bing/纯色渐变)

This commit is contained in:
2026-05-25 19:54:32 +08:00
parent a804db3579
commit bb1574641f
14 changed files with 868 additions and 395 deletions

17
web/themes/gradient.html Normal file
View File

@@ -0,0 +1,17 @@
<style>
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
#gradient-bg {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
z-index: 1;
background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e, #1a1a2e, #16213e);
background-size: 400% 400%;
animation: gradientShift 20s ease infinite;
}
</style>
<div id="gradient-bg"></div>