iT邦幫忙

2022 iThome 鐵人賽

DAY 23
0
自我挑戰組

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

D23看YT學 CSS動畫_邊界動畫

  • 分享至 

  • xImage
  •  

今天的參考
https://www.youtube.com/watch?v=LYgQXOV-x24
看了一下方法,是用一個旋轉的長方形,然後遮住一部分,看起來就會像2個光源在跑動

HTML
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>測試</title>
	<link href="C1.css" rel="stylesheet">
</head>
<body>
	<div class="box">
		<h2>02</h2>
	</div>
</body>
</html>

CSS

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

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

.box{
	position: relative;
	width: 300px;
	height: 480px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.5);
	overflow: hidden;
	border-radius: 20px;
}

.box::before{
	content: '';
	position: absolute;
	width: 150px;
	height: 150%; /*太短 光線會斷掉*/
	background: linear-gradient(#FFF93F,#FF2929);
	animation: RN 4s linear infinite;
}

.box::after{
	content: '';
	position: absolute;
	inset: 4px;
	background: #14161B;
	border-radius: 16px;
	
}

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

.box h2{
	color: #FFFFFF;
	font-size: 10em;
	position: relative;
	z-index: 10;
}

成果https://ithelp.ithome.com.tw/upload/images/20221007/20141355y64VO9vcvb.jpg
今天先這樣,明天找別的


上一篇
D22看YT學 CSS動畫_液體流動載入動畫3(完結)
下一篇
D24看YT學 CSS動畫_光點上浮
系列文
CSS UI(動畫)相關30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言