iT邦幫忙

2022 iThome 鐵人賽

DAY 22
0
自我挑戰組

CSS UI(動畫)相關系列 第 22

D22看YT學 CSS動畫_液體流動載入動畫3(完結)

  • 分享至 

  • xImage
  •  

接續昨天
https://www.youtube.com/watch?v=8ipFyy7HpqQ&list=PL5e68lK9hEzd-ZM4Km6xUia-mxQp52G6U&index=25

HTML

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>測試</title>
	<link href="C1.css" rel="stylesheet">
</head>
<body>
	<section>
		<svg>
			<filter id="GOO">
				<feGaussianBlur in="SourceGraphic" stdDeviation="10"/>
				<feColorMatrix values=" 
								1 0 0 0 0
								0 1 0 0 0
								0 0 1 0 0
								0 0 0 20 -10
				">
				</feColorMatrix>
			</filter>
		</svg>
		<div class="LOD">
			<span style="--i:1;"></span>
			<span style="--i:2;"></span>
			<span style="--i:3;"></span>
			<span style="--i:4;"></span>
			<span style="--i:5;"></span>
			<span style="--i:6;"></span>
			<span style="--i:7;"></span>
			<span style="--i:8;"></span>
			<span class="ROT" style="--j:0;"></span>
			<span class="ROT" style="--j:1;"></span>
			<span class="ROT" style="--j:2;"></span>
			<span class="ROT" style="--j:3;"></span>
			<span class="ROT" style="--j:4;"></span>
		</div>
	</section>
</body>
</html>

CSS

body{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

section{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #000000;
}

.LOD{
	position: relative;
	width: 250px;
	height: 250px;
	filter: url(#GOO);
	animation: AR 16s linear infinite;
}

.LOD span{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	transform: rotate(calc(45deg * var(--i)));
}

.LOD span::before{
	content: '';
	position: absolute;
	top: 0;
	left: calc(50% - 20px);
	width: 40px;
	height: 40px;
	background: linear-gradient(45deg,#FF6666,#FFCD4D);
	border-radius: 50%;
	box-shadow: 0 0 30px #F7FF4E;
}

.ROT{
	animation: AR 4s ease-in-out infinite;
	animation-delay: calc(-0.2s * var(--j));
}

@keyframes AR{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}

成果https://ithelp.ithome.com.tw/upload/images/20221006/20141355195fyppnR1.jpghttps://ithelp.ithome.com.tw/upload/images/20221006/20141355gYQNFjdvDS.jpg
今天先這樣,明天找別的


上一篇
D21看YT學 CSS動畫_液體流動載入動畫2(球體圓圈流動)
下一篇
D23看YT學 CSS動畫_邊界動畫
系列文
CSS UI(動畫)相關30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言