JS+CSS带你实现炫酷光感效果~

JS+CSS带你实现炫酷光感效果~

效果一:(螺旋式沉浸视觉感受)

在这里插入图片描述

效果二:(旋涡式远观视觉感受)

在这里插入图片描述

实现代码:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>光感效果</title>
	</head>
	<style>
		html,body{
    
    
			height: 100%;
			overflow: hidden;
		}
		body{
    
    
			background-color: #c08eaf;
		}
		.main{
    
    
			/* 中心点 */
			width: 8px;
			height: 8px;
			/* background-color: aqua; */
			position: absolute;
			left: 50%;
			top: 50%;
			transform: translate(-50%,-50%);
			/* 
			*景深,修改此属性可获得如上图展示的不同效果
			*如:图一的perspective为400px
			*图二的perspective为800px
			*修改为其它值还可获得更多效果
			*/
			perspective: 800px;
		}
		.main i{
    
    
			/* 动点 */
			width: 8px;
			height: 8px;
			border-radius: 50%;
			background:white;
			box-shadow: 0 0 10px 0 white;
			position: absolute;
			/* 动画 */
			animation: run 3s ease-in-out infinite;
		}
		/* .main i:nth-child(1){
			transform: rotate(0deg) translateX(80px);
		} */
		
		/* 动画 */
		@keyframes run{
    
    
			0%{
    
    
				opacity: 0;
			}
			10%{
    
    
				opacity: 1;
			}
			100%{
    
    
				opacity: 1;
				/* 3D动画效果 */
				transform: translate3d(0,0,560px);
			}
		}
	</style>
	<body>
		<div class="main" id="main">
		</div>
	</body>
	<script type="text/javascript">
		//获取元素
		var m = document.getElementById("main");
		for(var i = 0;i<60;i++){
    
    
			//创建元素
			var newNode = document.createElement("i");
			//添加元素
			m.appendChild(newNode)
			//设置旋转角度 及x轴方向位移距离
			newNode.style.transform=`rotate(${
      
      i*12}deg) translateX(80px)`
			//设置动画延迟
			newNode.style.animationDelay=`${
      
      i*0.05}s`
		}
	</script>
</html>

个人博客:http://47.113.84.128:8090
学习自B站up主码小渣:https://www.bilibili.com/video/BV1AA411n7bv

猜你喜欢

转载自blog.csdn.net/Twinkle_sone/article/details/108091567