占位符(Placeholder)通常用于表单控件中,显示提示信息,指导用户输入内容。当用户开始输入时,占位符会消失,显示用户输入的内容。移动占位符是指在用户输入过程中,占位符的位置或样式发生变化。设置占位符动画则是指为占位符添加动态效果,以提升用户体验。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Placeholder Animation</title>
<style>
input {
padding: 10px;
font-size: 16px;
border: 2px solid #ccc;
border-radius: 4px;
transition: border-color 0.3s, box-shadow 0.3s;
}
input:focus {
border-color: #007bff;
box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
input:focus::placeholder {
color: #007bff;
animation: placeholderFadeOut 0.5s forwards;
}
@keyframes placeholderFadeOut {
from { opacity: 1; }
to { opacity: 0; }
}
</style>
</head>
<body>
<form>
<label for="username">Username:</label>
<input type="text" id="username" name="username" placeholder="Enter your username">
</form>
</body>
</html>
will-change
属性优化动画性能,避免影响其他元素。通过以上方法,可以有效地实现和优化占位符动画,提升用户体验。
领取专属 10元无门槛券
手把手带您无忧上云