首页 > 解决方案 > 如何在一个字母后输入无效

问题描述

你好

这是我的输入

.centered-name 
{
  width: 80%;
  margin: auto;
}
.group {
  width: 100%;
  overflow: hidden;
  position: relative;
} 
.label {
  position: absolute;
  top: 40px;
  color: #666666;
  font: 400 26px Roboto;
  cursor: text;
  transition: 0.3s ease;
  width: 100%;
  text-align: center;
}

.input {
  display: block;
  width: 100%;
  padding-top: 36px;
  border: none;
  border-radius: 0;
  font-size: 30px;
  transition: .3s ease;
  text-align: center;
}
.input:valid ~ .label 
{
  top: 3px;
  font: 400 26px Roboto;
}


.input:focus {
  outline: none;
}
.input:focus ~ .label {
  top: 3px;
  font: 400 26px Roboto;
}
.input:focus ~ .bar:before {
  transform: translateX(0);
}
.bar {
  border-bottom: 2px solid #ff5126;
  width: 100%;
  margin-top: 6px;
  transition: .3s ease;
}
.input:valid ~ .bar
{
  border-bottom: 2px solid #3bb873;
}
<div class="centered-name">
    <div class="group">
        <input type="text" minlength="5" dir="rtl" class="input res" id="name" required autocomplete="off" />
        <label class="label res" for="name">Name</label>
        <div class="bar"></div>
    </div>
</div>

什么时候是无效的并且你写了一些东西(少于 5 个字母)并且它失去了焦点,标签会掉下来

我也试试

.input:invalid ~ .label 
{
  top: 3px;
  font: 400 26px Roboto;
}

.centered-name
{
  width: 80%;
  margin: auto;
}
.group {
  width: 100%;
  overflow: hidden;
  position: relative;
} 
.label {
  position: absolute;
  top: 40px;
  color: #666666;
  font: 400 26px Roboto;
  cursor: text;
  transition: 0.3s ease;
  width: 100%;
  text-align: center;
}

.input {
  display: block;
  width: 100%;
  padding-top: 36px;
  border: none;
  border-radius: 0;
  font-size: 30px;
  transition: .3s ease;
  text-align: center;
}
.input:valid ~ .label 
{
  top: 3px;
  font: 400 26px Roboto;
}
.input:invalid ~ .label 
{
  top: 3px;
  font: 400 26px Roboto;
}

.input:focus {
  outline: none;
}
.input:focus ~ .label {
  top: 3px;
  font: 400 26px Roboto;
}
.input:focus ~ .bar:before {
  transform: translateX(0);
}
.bar {
  border-bottom: 2px solid #ff5126;
  width: 100%;
  margin-top: 6px;
  transition: .3s ease;
}
.input:valid ~ .bar
{
  border-bottom: 2px solid #3bb873;
}
<div class="centered-name">
    <div class="group">
        <input type="text" minlength="5" dir="rtl" class="input res" id="name" required autocomplete="off" />
        <label class="label res" for="name">Name</label>
        <div class="bar"></div>
    </div>
</div>

但在我们写任何东西之前,标签再次上升

写信后如何输入无效?

标签: javascripthtmlcss

解决方案


您遇到的问题是因为您“滥用”对样式有效

您可以将其更改为使用:placeholder-shown https://caniuse.com/#feat=css-placeholder-shown

如果您在第一个示例中进行更改

.input:focus ~ .label {
   top: 3px;
  font: 400 26px Roboto;
}

类似于

.input:not(:placeholder-shown) ~ .label {
    top: 3px;
    font: 400 26px Roboto;
}

.input::placeholder {
    color: transparent;
}

并为您的输入标签添加一个占位符


推荐阅读