css实现正方体方块跳动动画效果代码
代码语言:html
所属分类:动画
代码描述:css实现正方体方块跳动动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
@property --hue {
syntax: '<integer>';
inherits: true;
initial-value: 0;
}
* {
box-sizing: border-box;
}
:root {
--perspective: 1000;
--cuboid-height: 14;
--cuboid-width: 14;
--cuboid-depth: 14;
--speed: 1.2s;
--x: 0;
--y: 0;
--z: 7;
--rotate-x: -30;
--rotate-y: -24;
--plane-width: 14;
--plane-height: 14;
--rotate-cuboid-x: 0;
--rotate-cuboid-y: 0;
--rotate-cuboid-z: 0;
}
body {
min-height: 100vh;
background: #1a1a1a;
overflow: hidden;
}
.scene {
-webkit-perspective: calc(var(--perspective, 800) * 1px);
perspective: calc(var(--perspective, 800) * 1px);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
height: 100vh;
width: 100vw;
display: -webkit-box;
display: flex;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
}
.plane {
height: calc(var(--plane-height, 25) * 1vmin);
width: calc(var(--plane-width, 25) * 1vmin);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: rotateX(calc(var(--rotate-x, -24) * 1deg)) rotateY(calc(var(--rotate-y, -24) * 1deg)) rotateX(90deg);
transform: rotateX(calc(var(--rotate-x, -24) * 1deg)) rotateY(calc(var(--rotate-y, -24) * 1deg)) rotateX(90deg);
}
.cuboid {
--width: var(--cuboid-width, 15);
--height: var(--cuboid-height, 10);
--depth: var(--cuboid-depth, 4);
height: calc(var(--depth) * 1vmin);
width: calc(var(--width) * 1vmin);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
position: absolute;
-webkit-transform: translate3d(calc(var(--x, 4) * 1vmin), calc(var(--y, 5) * 1vmin), calc(var(--z, 0) * 1vmin)) rotateX(-90deg) rotateY(calc(var(--rotate-cuboid-y, 0) * 1deg)) rotateZ(calc(var(--rotate-cuboid-z, 0) * 1deg));
transform: translate3d(calc(var(--x, 4) * 1vmin), calc(var(--y, 5) * 1vmin), calc(var(--z, 0) * 1vmin)) rotateX(-90deg) rotateY(calc(var(--rotate-cuboid-y, 0) * 1deg)) rotateZ(calc(var(--rotate-cuboid-z, 0) * 1deg));
}
.cuboid > div:nth-of-type(1) {
height: calc(var(--height) * 1vmin);
width: 100%;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-transform: rotateX(-90deg);
transform: rotateX(-90deg);
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%) rotateX(-90deg) translate3d(0, 0, calc((var(--depth) / 2) * 1vmin));
transform: translate(-50%, -50%) rotateX(-90deg) transla.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0