<!-- 主容器,包含三个跳动的立方体 -->
<div class="container">
<!-- 三个相同的立方体结构 -->
<div class="cube">
<div class="cube__inner"></div>
</div>
<div class="cube">
<div class="cube__inner"></div>
</div>
<div class="cube">
<div class="cube__inner"></div>
</div>
</div>
HTML
格式化
支持Emmet,输入 p 后按 Tab键试试吧!
<head> ... </head>
<body>
</body>
/* 设置页面基本样式,使内容居中显示 */
body {
background: #282c34;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
/* CSS变量定义
--uib-size: 控制整体大小
--uib-color: 控制立方体颜色
--uib-speed: 控制动画速度
*/
.container {
--uib-size: 45px;
--uib-color: #c7f93e;
--uib-speed: 1.75s;
display: flex;
align-items: flex-end;
padding-bottom: 20%;
justify-content: space-between;
width: var(--uib-size);
height: calc(var(--uib-size) * 0.6);
}
/* 设置页面基本样式,使内容居中显示 */
body {
background: #282c34;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
/* 立方体基本样式 */
.cube {
flex-shrink: 0;
width: calc(var(--uib-size) * 0.2);
height: calc(var(--uib-size) * 0.2);
animation: jump var(--uib-speed) ease-in-out infinite;
}
/* 立方体内部元素样式 */
.cube__inner {
display: block;
height: 100%;
width: 100%;
border-radius: 25%;
background-color: var(--uib-color);
transform-origin: center bottom;
animation: morph var(--uib-speed) ease-in-out infinite;
transition: background-color 0.3s ease;
}
/* 为第二个立方体设置动画延迟 */
.cube:nth-child(2) {
/* 延迟动画时间为总时间的 -0.36 */
animation-delay: calc(var(--uib-speed) * -0.36);
.cube__inner {
animation-delay: calc(var(--uib-speed) * -0.36);
}
}
/* 为第三个立方体设置动画延迟 */
.cube:nth-child(3) {
/* 延迟动画时间为总时间的 -0.2 */
animation-delay: calc(var(--uib-speed) * -0.2);
.cube__inner {
animation-delay: calc(var(--uib-speed) * -0.2);
}
}
/* 跳跃动画关键帧
0%: 初始位置
30%: 准备起跳
50%: 最高点
75%: 落回原位
*/
@keyframes jump {
0% {
transform: translateY(0px);
}
30% {
transform: translateY(0px);
animation-timing-function: ease-out;
}
50% {
transform: translateY(-200%);
animation-timing-function: ease-in;
}
75% {
transform: translateY(0px);
animation-timing-function: ease-in;
}
}
/* 形变动画关键帧
控制立方体在跳跃过程中的形状变化
包括压缩、拉伸等效果
*/
@keyframes morph {
0% {
transform: scaleY(1);
}
10% {
transform: scaleY(1);
}
20%,
25% {
transform: scaleY(0.6) scaleX(1.3);
animation-timing-function: ease-in-out;
}
30% {
transform: scaleY(1.15) scaleX(0.9);
animation-timing-function: ease-in-out;
}
40% {
transform: scaleY(1);
}
70%,
85%,
100% {
transform: scaleY(1);
}
75% {
transform: scaleY(0.8) scaleX(1.2);
}
}
预览
控制台