CG创作实践参考
1 折叠/展开:checkbox + max-height
max-height.memory-blackbox .memory-body {
max-height: 0;
opacity: 0;
overflow: hidden;
transition: max-height 0.3s ease, opacity 0.3s ease;
}
.memory-blackbox .memory-toggle:checked ~ .memory-body {
max-height: 520px;
opacity: 1;
}
.memory-blackbox .memory-toggle:checked ~ .memory-header .arrow {
transform: rotate(180deg);
}2 Tab / 轮播:radio 分组
3 动画层级
4 展开全文、模式切换、网格布局
5 进度条、多选项
6 弹幕列表、关键帧特效
7 多路 radio 选择 + 翻牌
最終更新