我有2個輸入字段與浮動佔位符。焦點上,佔位符向上移動併爲用戶輸入空間。但是一旦用戶開始輸入它就會消失。在文本框中輸入內容後,我希望佔位符保留在同一個地方。這是可能的只使用CSS?保留佔位符後鍵入
input {
width: 100%;
display: block;
border: none;
padding: 20px 0 10px 0;
border-bottom: solid 1px #343a40;
-webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 99%, #007bff 1%);
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 99%, #007bff 1%);
background-position: -1000px 0;
background-size: auto 100%;
background-repeat: no-repeat;
color: #000;
}
input:focus,
input:valid {
box-shadow: none;
outline: none;
background-position: 0 0;
}
input::-webkit-input-placeholder {
font-family: 'roboto', sans-serif;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
input:focus::-webkit-input-placeholder,
input:valid::-webkit-input-placeholder {
color: #007bff;
font-size: 12px;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
visibility: visible !important;
}
<input placeholder="Username" type="text" required>
<input placeholder="Password" type="password" required>
使用標籤,而不是一個佔位符和風格標籤 –
不是真的,因爲一旦輸入有任何內容,佔位符不顯示了。如果您使用標籤而不是佔位符,則可以實現此目的 - [佔位符無論如何都被認爲是有害的](https://www.nngroup.com/articles/form-design-placeholders/)。但是,公平地說 - 浮動標籤模式也是如此(https://medium.com/simple-human/floating-labels-are-a-bad-idea-82edb64220f6)。所以,如果可用性是你關注的焦點,而不僅僅是設計師的虛榮心......那麼你也許不應該使用其中的任何一個。 – CBroe
這真的有道理..謝謝@CBroe – Venky