iT邦幫忙

2022 iThome 鐵人賽

DAY 25
0
自我挑戰組

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

D25看YT學 CSS動畫_輸入框1 (輸入框雛形,動畫相關放明天)

  • 分享至 

  • xImage
  •  

今天的參考
https://www.youtube.com/watch?v=BMphVl9suxA

HTML

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>測試</title>
	<link href="C1.css" rel="stylesheet">
</head>
<body>
	<div class="INP">
		<input type="text" required="required">
		<span>姓名</span>
	</div>
	<div class="INP">
		<input type="text" required="required">
		<span>學號</span>
	</div>
</body>
</html>

CSS

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;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;
	flex-direction: column;
	gap: 30px;
	background: #121214;
}

.INP{
	position: relative;
	width: 250px;
}

.INP input{
	width: 100%;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: #121214;
	border-radius: 5px;
	outline: none;
	color: #FFF;
	color-size: 1em;
}

.INT span{
	position: absolute;
	left: 0;
	padding: 10px;
	pointer-events: none;
	font-size: 1em;
	color: rgba(255, 255, 255, 0.25);
	text-transform: uppercase;
}

.INP input:valid ~ span,
.INP input:focus ~ span{
	color: #34C9FF;

}

成果(滑鼠點擊輸入框,字會變色)
https://ithelp.ithome.com.tw/upload/images/20221009/201413556td2EpwXOR.jpg
今天先這樣,明天繼續


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

尚未有邦友留言

立即登入留言