css实现三维空间光照文字阴影效果代码

代码语言:html

所属分类:布局界面

代码描述:css实现三维空间光照文字阴影效果代码,阴影到墙壁后形成折射

代码标签: css 文字 阴影 三维

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">






    <style>
        @import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
        
        body {
        	margin: 0;
        	font-family: Arial, Helvetica, sans-serif;
        	box-sizing: border-box;
        	height: 100vh;
        	background: #203a43;
        	overflow: hidden;
        	background: radial-gradient(ellipse at 50% 80%, #203a43 0%, #000000 100%);
        }
        
        body * {
        	transform-style: preserve-3d;
        	box-sizing: border-box;
        	outline: none;
        	font-family: "Bebas Neue", Arial Helvetica, serif;
        }
        
        .content {
        	width: 100vw;
        	height: 100vh;
        	overflow: hidden;
        	justify-content: center;
        	align-items: center;
        	display: flex;
        	flex-wrap: wrap;
        	align-content: center;
        	perspective-origin: center;
        	position: absolute;
        	z-index: -1;
        	transition: all 1s ease 0s;
        	left: 0;
        	top: 0;
        	perspective: 200vmin;
        }
        
        .room {
        	--height: 100;
        	--width: 100;
        	--depth: 100;
        	--hue: 200;
        	--light: 10%;
        	height: calc(var(--height) * 1vmin);
        	width: calc(var(--width) * 1vmin);
        	transform: rotateX(154deg) rotateY(-70deg) translateY(75vmin)
        		translateX(-35vmin) translateZ(10vmin);
        	transform-origin: right center;
        	animation: room-view 5s ease-in-out 0s infinite alternate;
        }
        
        .wall,
        .morning,
        .and,
        .good {
        	position: absolute;
        	top: 50%;
        	left: 50%;
        	height: 100%;
        	width: 100%;
        }
        
        .wall:nth-of-type(1) {
        	transform: translate3d(-50%, -50%, calc(var(--depth) * 0.5vmin));
        	background: hsl(var(--hue), 60%, calc(var(--light) * 2.5));
        }
        
        .wall:nth-of-type(2) {
        	width: calc(var(--depth) * 1vmin);
        	transform: translate(-50%, -50%) rotateY(90deg)
        		translate3d(0, 0, calc(var(--width) * 0.5vmin));
        	background: hsl(var(--hue), 60%, calc(var(--light) * 3));
        }
        
        .wall:nth-of-type(3) {
        	height: calc(var(--depth) * 1vmin);
        	transform: translate(-50%, -50%) rotateX(90deg)
        		translate3d(0, 0, calc(var(--height) * 0.5vmin));
        	background: hsl(var(--hue), 60%, calc(var(--light) * 3.5));
        	box-shadow: 0 0 0 5vmin hsl(var(--hue), 60%, calc(var(--light) * 3.5));
        }
        
        .morning {
        	width: calc(var(--depth) * 1vmin);
        	transform: translate(-50%, -50%) rotateY(270deg) rotatez(180deg)
        		translate3d(0, 0, -15vmin);
        	text-align: center;
        	display: flex;
        	justify-content: flex-start;
        	text-transform: uppercase;
        	line-height: 8.25vmin;
        	font-size: 13vmin;
        	flex-wrap: wrap;
        	align-content: flex-end;
        	padding-left: 10vmin;
        	color: #ffc107;
        	width: 100%;
        	text-shadow: 1px 1px 0 #8f550080, -1px 1px 0 #8f550080, -1px -1px 0 #8f550080,
        		1px -1px 0 #8f550080, 1px -1px 0 #f19102, 2px -2px 0 #d98201,
        		3px -3p.........完整代码请登录后点击上方下载按钮下载查看

网友评论0