iT邦幫忙

2022 iThome 鐵人賽

DAY 28
0
自我挑戰組

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

D28看YT學 CSS動畫_霧面玻璃2 (霧面效果動畫,完結)

  • 分享至 

  • xImage
  •  

接續昨天
https://www.youtube.com/watch?v=W8RPE_CyTug&t=221s

HTML
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>測試</title>
	<link href="C1.css" rel="stylesheet">
</head>
<body>
	<div class="container">
		<div class="LD ONE">
			<span></span>
			<span></span>
		</div>
		<div class="LD TWO">
			<span></span>
			<span></span>
		</div>
	</div>
</body>
</html>

CSS

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

body{
	display: flex;
	background: #EDFCFF;
}

.container{
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.container .LD{
	position: relative;
	width: 150px;
	height: 150px;
	margin: 100px;
}

.container .LD.ONE  span{  /*.LD.ONE 中間不能有空格*/
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background: rgb(50, 220, 220);
	border-radius: 50%;
	animation: AM ease-in-out 2s infinite;
}
.container .LD.ONE span:nth-child(2){  /*.LD.ONE 中間不能有空格*/
	left: 50%;
	background: rgba(50, 220, 220,0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	animation-delay: -1s;
}

@keyframes AM{
	0%,100%{     /*循環動畫不卡頓的關鍵*/
		transform: translateX(-80px);
	}
	50%{
		transform: translateX(80px);
	}
}

今天先這樣,明天找別的


上一篇
D27看YT學 CSS動畫_霧面玻璃1 (霧面效果)
下一篇
D29看YT學 CSS動畫_方形爬坡動畫1 (動畫雛形)
系列文
CSS UI(動畫)相關30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言