好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

CSS3 input框的实现代码类似Google登录的动画效果

&nbs p; 用css3将input框写出类似 GOOGLE 登录页面的动画效果

效果一

代码如下

CSS

body{
    background-color: # acacac;
  }
  .form-cont ai ner{
    dis play : block;
    pos IT ion: relative;
    width: 400px;
    h ei ght: 400px;
    background: #fff;
    m arg in: 50px auto;
    padding: 30px;
  }

  input{
    display: block;
    position: relative;
    background: none;
    border: 2px solid #acacac;
    border-radius:5px;
    width: 100%;
     font-weight : bold;
    padding-left:10px;
    font- Size:  16px;
    height:35px;
    z -i ndex: 1;
  }

  label{
    display: inline-block;
    position: relative;
    top: -32px;
    left: 10px;
    color: #acacac;
    font -s ize: 16px;
    z-index: 2;
    transition: all 0.2s ease-out;
  }

  input:focus, input:valid{
    outline: none;
    border: 2px solid #00aced;
  }

  input:focus + label, input:valid + label{
    top: -50px;
    font-size: 16px;
    color: #00aced;
    background-color:#fff;
  }

HT ML

<div class=" ;m ain">
    <div class="form-container">
      <input ty PE ="text" n am e="input1" requi red >
      <label for="input1">Account</label>

      <input type="text" name="input2" required>
      <label for="input2">Password</label>
    </div>
  </div>

效果二

代码如下:

CSS

body{
    background-color:#acacac;
  }
  .form-container{
    display: block;
    position: relative;
    width: 400px;
    background: #fff;
    mar gin : 50px auto;
    padding: 60px;
  }

  input{
    display: block;
    position: relative;
    background: none;
    border: none;
    border-bottom: 1px solid #ddd;
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    z-index: 2;
  }

  label{
    display: block;
    position: relative;
    top: -20px;
    left: 0px;
    color: #999;
    font-size: 16px;
    z-index: 1;
    transition: all 0.3s ease-out;
    margin-bottom:40px;
  }

  input:focus, input:valid{
    outline: none;
    border-bottom: 1px solid #00aced;
  }

  input:focus + label, input:valid + label{
    top: -50px;
    font-size: 16px;
    color: #00aced;
    background-color:#fff;
  }

HTML

<div class="main">
    <div class="form-container">
      <input type="text" name="input1" required>
      <label for="input1">Account</label>
      <input type="text" name="input2" required>
      <label for="input2">Password</label>
    </div>
  </div>

总结

到此这篇关于CSS3 input框的实现代码类似Google登录的动画效果的 文章 就介绍到这了,更多相关CSS3 input框内容请搜索以前的文章或继续浏览下面的相关文章,希望大家以后多多支持!

总结

以上是 为你收集整理的 CSS3 input框的实现代码类似Google登录的动画效果 全部内容,希望文章能够帮你解决 CSS3 input框的实现代码类似Google登录的动画效果 所遇到的问题。

如果觉得 网站内容还不错, 推荐好友。

查看更多关于CSS3 input框的实现代码类似Google登录的动画效果的详细内容...

  阅读:21次