feat: 首页轮播图动画

This commit is contained in:
2026-05-14 17:14:37 +08:00
parent d47d9535ee
commit 9733a0dcd6
3 changed files with 421 additions and 104 deletions

View File

@@ -1,11 +1,34 @@
html,body{
margin: 0;
padding: 0;
html,
body {
margin: 0;
padding: 0;
}
.flex {
display: flex;
}
.flex-col {
flex-direction: column;
}
.flex-center {
justify-content: center;
align-items: center;
}
.flex-1 {
flex: 1;
}
.space-between {
justify-content: space-between;
}
.justify-center {
justify-content: center;
}
.align-center {
align-items: center;
}