我的编程空间,编程开发者的网络收藏夹
学习永远不晚

纯CSS3如何实现input输入框动画样式库

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

纯CSS3如何实现input输入框动画样式库

小编给大家分享一下纯CSS3如何实现input输入框动画样式库,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!

分享一个用纯 CSS3 实现的,漂亮的 input 输入框动画样式库-Text input love。

点击每个输入框都用不同的动画效果,始终显示标签label,并显示 placeholder(占位符)文本。

纯CSS3如何实现input输入框动画样式库

HTML 代码:

<div class="row">  <p>Click every input.</p></div><div class="row">  <span>    <input class="basic-slide" id="name" type="text" placeholder="Your best name" /><label for="name">Name</label>  </span>  <span>    <input class="basic-slide" id="email" type="text" placeholder="Your favorite email" /><label for="email">Email</label>  </span>  <span>    <input class="basic-slide" id="phone" type="text" placeholder="You can trust us" /><label for="phone">Phone</label>  </span></div><div class="row">  <span>    <input class="clean-slide" id="age" type="text" placeholder="Go for the high score!" /><label for="age">Age</label>  </span>  <span>    <input class="clean-slide" id="height" type="text" placeholder="Heels count" /><label for="height">Height</label>  </span>  <span>    <input class="clean-slide" id="weight" type="text" placeholder="Go ahead and lie" /><label for="weight">Weight</label>  </span></div><div class="row">  <span>    <input class="gate" id="class" type="text" placeholder="Wizard!" /><label for="class">Class</label>  </span>  <span>    <input class="gate" id="element" type="text" placeholder="Five to choose from" /><label for="element">Element</label>  </span>  <span>    <input class="gate" id="move" type="text" placeholder="Secret book attack!" /><label for="move">Move</label>  </span></div><div class="row">  <span>    <input class="skinny" id="english" type="text" placeholder="Do you speak it?" /><label for="english">English</label>  </span>  <span>    <input class="skinny" id="burger" type="text" placeholder="A Royale with cheese?" /><label for="burger">Burger</label>  </span>  <span>    <input class="skinny" id="wallet" type="text" placeholder="Bad Mother****er" /><label for="wallet">Wallet</label>  </span></div><div class="row">  <span>    <input class="slide-up" id="card" type="text" placeholder="Fund me!" /><label for="card">Credit Card</label>  </span>  <span>    <input class="slide-up" id="expires" type="text" placeholder="Month Day, Year" /><label for="expires">Expires</label>  </span>  <span>    <input class="slide-up" id="security" type="text" placeholder="Public" /><label for="security">Security Code</label>  </span></div><div class="row">  <span>    <input class="card-slide" id="knock" type="text" placeholder="Who's there?" /><label for="knock">Knock knock</label>  </span>  <span>    <input class="card-slide" id="max" type="text" placeholder="Max who?" /><label for="max">Max</label>  </span>  <span>    <input class="card-slide" id="out" type="text" placeholder="Sunuva..." /><label for="out">Maxed out card ;)</label>  </span></div><div class="row">  <span>    <input class="swing" id="artist" type="text" placeholder="BO$$" /><label for="artist">Artist</label>  </span>  <span>    <input class="swing" id="song" type="text" placeholder="I don't give a ****" /><label for="song">Song</label>  </span>  <span>    <input class="swing" id="eyes" type="text" placeholder="Crazy" /><label for="eyes">Eyes</label>  </span></div><div class="row">  <span>    <input class="balloon" id="state" type="text" placeholder="Liquid, solid, gaseous..." /><label for="state">State</label>  </span>  <span>    <input class="balloon" id="planet" type="text" placeholder="Probably Earth" /><label for="planet">Planet</label>  </span>  <span>    <input class="balloon" id="galaxy" type="text" placeholder="Milky Way?" /><label for="galaxy">Galaxy</label>  </span></div>

SCSS 代码:

Sass 代码:

@import "compass/css3"; @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,600,300,800); * {  box-sizing: border-box;}html,body {  overflow-x: hidden;  font-family: "Open Sans", sans-serif;  font-weight: 300;  color: #fff;  background: #efefef;}@mixin epic-sides() { // https://codepen.io/MichaelArestad/pen/qltuk    position: relative;    z-index: 1;     &:before {        position: absolute;        content: "";        display: block;        top: 0;        left: -5000px;        height: 100%;        width: 15000px;        z-index: -1;        @content;    }}.row {  max-width: 800px;  margin: 0 auto;  padding: 60px 30px;  background: #032429;  @include epic-sides() {background: inherit;}  text-align: center;    &:first-child {    padding: 40px 30px;  }  &:nth-child(2),  &:nth-child(8),  &:nth-child(10){    background: #134A46;  }  &:nth-child(3),  &:nth-child(7) {    background: #377D6A;  }  &:nth-child(4),  &:nth-child(6) {    background: #7AB893;  }  &:nth-child(5) {    background: #B2E3AF;  }    span {    position: relative;    display: inline-block;    margin: 30px 10px;  }}.basic-slide {  display: inline-block;  width: 215px;  padding: 10px 0 10px 15px;  font-family: "Open Sans", sans;  font-weight: 400;  color: #377D6A;  background: #efefef;  border: 0;  border-radius: 3px;  outline: 0;  text-indent: 70px; // Arbitrary.  transition: all .3s ease-in-out;    &::-webkit-input-placeholder {    color: #efefef;    text-indent: 0;    font-weight: 300;  }   + label {    display: inline-block;    position: absolute;    top: 0;    left: 0;    padding: 10px 15px;    text-shadow: 0 1px 0 rgba(19,74,70,.4);    background: #7AB893;    transition: all .3s ease-in-out;    border-top-left-radius: 3px;    border-bottom-left-radius: 3px;  }}.basic-slide:focus,.basic-slide:active {  color: #377D6A;  text-indent: 0;  background: #fff;  border-top-left-radius: 0;  border-bottom-left-radius: 0;    &::-webkit-input-placeholder {    color: #aaa;  }  + label {    transform: translateX(-100%);  }}.clean-slide {  position: relative;  display: inline-block;  width: 215px;  padding: 10px 0 10px 15px;  font-family: "Open Sans", sans;  font-weight: 400;  color: #377D6A;  background: #efefef;  border: 0;  border-radius: 3px;  outline: 0;  text-indent: 60px; // Arbitrary.  transition: all .3s ease-in-out;    &::-webkit-input-placeholder {    color: #efefef;    text-indent: 0;    font-weight: 300;  }   + label {    display: inline-block;    position: absolute;    transform: translateX(0);    top: 0;    left: 0;    bottom: 0;    padding: 13px 15px;    font-size: 11px;    font-weight: 700;    text-transform: uppercase;    color: #032429;    text-align: left;    text-shadow: 0 1px 0 rgba(255,255,255,.4);    transition: all .3s ease-in-out, color .3s ease-out;    border-top-left-radius: 3px;    border-bottom-left-radius: 3px;    overflow: hidden;        &:after {      content: "";      position: absolute;      top: 0;      right: 100%;      bottom: 0;      width: 100%;      background: #7AB893;      z-index: -1;      transform: translate(0);      transition: all .3s ease-in-out;      border-top-left-radius: 3px;      border-bottom-left-radius: 3px;    }  }}.clean-slide:focus,.clean-slide:active {  color: #377D6A;  text-indent: 0;  background: #fff;  border-top-left-radius: 0;  border-bottom-left-radius: 0;    &::-webkit-input-placeholder {    color: #aaa;  }  + label {    color: #fff;    text-shadow: 0 1px 0 rgba(19,74,70,.4);    transform: translateX(-100%);        &:after {      transform: translate(100%);    }  }}.gate {  display: inline-block;  width: 215px;  padding: 10px 0 10px 15px;  font-family: "Open Sans", sans;  font-weight: 400;  color: #377D6A;  background: #efefef;  border: 0;  border-radius: 3px;  outline: 0;  text-indent: 65px; // Arbitrary.  transition: all .3s ease-in-out;    &::-webkit-input-placeholder {    color: #efefef;    text-indent: 0;    font-weight: 300;  }   + label {    display: inline-block;    position: absolute;    top: 0;    left: 0;    padding: 10px 15px;    text-shadow: 0 1px 0 rgba(19,74,70,.4);    background: #7AB893;    transition: all .4s ease-in-out;    border-top-left-radius: 3px;    border-bottom-left-radius: 3px;    transform-origin: left bottom;    z-index: 99;        &:before,    &:after {      content: "";      position: absolute;      top: 0;      right: 0;      bottom: 0;      left: 0;      border-radius: 3px;      background: #377D6A;      transform-origin: left bottom;      transition: all .4s ease-in-out;      pointer-events: none;      z-index: -1;    }    &:before {      background: rgba(3,36,41,.2);      z-index: -2;      right: 20%;    }  }}span:nth-child(2) .gate {  text-indent: 85px;}span:nth-child(2) .gate:focus,span:nth-child(2) .gate:active{  text-indent: 0;}.gate:focus,.gate:active {  color: #377D6A;  text-indent: 0;  background: #fff;  border-top-right-radius: 3px;  border-bottom-right-radius: 3px;    &::-webkit-input-placeholder {    color: #aaa;  }  + label {    transform: rotate(-66deg);    border-radius: 3px;        &:before {      transform: rotate(10deg);    }  }}.skinny {  display: inline-block;  width: 215px;  padding: 10px 0 10px 15px;  font-family: "Open Sans", sans;  font-weight: 400;  color: #377D6A;  background: #efefef;  border: 0;  border-radius: 3px;  outline: 0;  text-indent: 75px; // Arbitrary.  transition: all .3s ease-in-out;    &::-webkit-input-placeholder {    color: #efefef;    text-indent: 0;    font-weight: 300;  }   + label {    display: inline-block;    position: absolute;    transform: translateX(0);    top: 0;    left: 0;    padding: 10px 15px;    text-shadow: 0 1px 0 rgba(19,74,70,.4);    transition: all .3s ease-in-out;    border-top-left-radius: 3px;    border-bottom-left-radius: 3px;    overflow: hidden;     &:before,    &:after {      content: "";      position: absolute;      right: 0;      left: 0;      z-index: -1;      transition: all .3s ease-in-out;    }    &:before {      // Skinny bit here      top: 5px;      bottom: 5px;      background: #377D6A; // change this to #134A46      border-top-left-radius: 3px;      border-bottom-left-radius: 3px;    }    &:after {      top: 0;      bottom: 0;      background: #377D6A;    }  }}.skinny:focus,.skinny:active {  color: #377D6A;  text-indent: 0;  background: #fff;    &::-webkit-input-placeholder {    color: #aaa;  }  + label {    transform: translateX(-100%);        &:after {      transform: translateX(100%);    }  }}.slide-up {  display: inline-block;  width: 215px;  padding: 10px 0 10px 15px;  font-family: "Open Sans", sans;  font-weight: 400;  color: #377D6A;  background: #efefef;  border: 0;  border-radius: 3px;  outline: 0;  text-indent: 80px; // Arbitrary.  transition: all .3s ease-in-out;    &::-webkit-input-placeholder {    color: #efefef;    text-indent: 0;    font-weight: 300;  }   + label {    display: inline-block;    position: absolute;    transform: translateX(0);    top: 0;    left: 0;    padding: 10px 15px;    text-shadow: 0 1px 0 rgba(19,74,70,.4);    transition: all .3s ease-in-out;    border-top-left-radius: 3px;    border-bottom-left-radius: 3px;    overflow: hidden;     &:before,    &:after {      content: "";      position: absolute;      right: 0;      left: 0;      z-index: -1;      transition: all .3s ease-in-out;    }    &:before {      // Skinny bit here      top: 6px;      left: 5px;      right: 5px;      bottom: 6px;      background: #377D6A; // change this to #134A46    }    &:after {      top: 0;      bottom: 0;      background: #377D6A;    }  }}span:nth-child(1) .slide-up {  text-indent: 105px;}span:nth-child(3) .slide-up {  text-indent: 125px;}span:nth-child(1) .slide-up:focus,span:nth-child(1) .slide-up:active,span:nth-child(3) .slide-up:focus,span:nth-child(3) .slide-up:active {  text-indent: 0;}.slide-up:focus,.slide-up:active {  color: #377D6A;  text-indent: 0;  background: #fff;    &::-webkit-input-placeholder {    color: #aaa;  }  + label {    transform: translateY(-100%);     &:before {      border-radius: 5px;    }    &:after {      transform: translateY(100%);    }  }}.card-slide {  display: inline-block;  width: 215px;  padding: 10px 0 10px 15px;  font-family: "Open Sans", sans;  font-weight: 400;  color: #377D6A;  background: #efefef;  border: 0;  border-radius: 3px;  outline: 0;  text-indent: 115px; // Arbitrary.  transition: all .3s ease-in-out;    &::-webkit-input-placeholder {    color: #efefef;    text-indent: 0;    font-weight: 300;  }   + label {    display: block;    position: absolute;    top: 0;    left: 0;    padding: 10px 15px;    text-shadow: 0 1px 0 rgba(19,74,70,.4);    background: #7AB893;    transition: all .3s ease-in-out;    border-top-left-radius: 3px;    border-bottom-left-radius: 3px;    transform-origin: right center;    transform: perspective(300px) scaleX(1) rotateY(0deg);  }}span:nth-child(2) .card-slide {  text-indent: 55px;}span:nth-child(3) .card-slide {  text-indent: 150px;}span:nth-child(2) .card-slide:focus,span:nth-child(2) .card-slide:active,span:nth-child(3) .card-slide:focus,span:nth-child(3) .card-slide:active {  text-indent: 0;}.card-slide:focus,.card-slide:active {  color: #377D6A;  text-indent: 0;  background: #fff;  border-top-left-radius: 0;  border-bottom-left-radius: 0;    &::-webkit-input-placeholder {    color: #aaa;  }  + label {    transform: perspective(600px) translateX(-100%) rotateY(80deg);  }}.swing {  display: inline-block;  width: 215px;  padding: 10px 0 10px 15px;  font-family: "Open Sans", sans;  font-weight: 400;  color: #377D6A;  background: #efefef;  border: 0;  border-radius: 3px;  outline: 0;  text-indent: 60px; // Arbitrary.  transition: all .3s ease-in-out;    &::-webkit-input-placeholder {    color: #efefef;    text-indent: 0;    font-weight: 300;  }   + label {    display: inline-block;    position: absolute;    top: 0;    left: 0;    padding: 10px 15px;    text-shadow: 0 1px 0 rgba(19,74,70,.4);    background: #7AB893;    border-top-left-radius: 3px;    border-bottom-left-radius: 3px;    transform-origin: 2px 2px;    transform: rotate(0);    // There should be a better way    animation: swing-back .4s 1 ease-in-out;  }}@keyframes swing {  0% {    transform: rotate(0);  }  20% {    transform: rotate(116deg);  }  40% {    transform: rotate(60deg);  }  60% {    transform: rotate(98deg);  }  80% {    transform: rotate(76deg);  }  100% {    transform: rotate(82deg);  }}@keyframes swing-back {  0% {    transform: rotate(82deg);  }  100% {    transform: rotate(0);  }}.swing:focus,.swing:active {  color: #377D6A;  text-indent: 0;  background: #fff;  border-top-left-radius: 0;  border-bottom-left-radius: 0;    &::-webkit-input-placeholder {    color: #aaa;  }  + label {    animation: swing 1.4s 1 ease-in-out;    transform: rotate(82deg);  }}.balloon {  // As suggested by https://twitter.com/dbox/status/365888496486985728  display: inline-block;  width: 215px;  padding: 10px 0 10px 15px;  font-family: "Open Sans", sans;  font-weight: 400;  color: #377D6A;  background: #efefef;  border: 0;  border-radius: 3px;  outline: 0;  text-indent: 60px; // Arbitrary.  transition: all .3s ease-in-out;    &::-webkit-input-placeholder {    color: #efefef;    text-indent: 0;    font-weight: 300;  }   + label {    display: inline-block;    position: absolute;    top: 8px;    left: 0;    bottom: 8px;    padding: 5px 15px;    color: #032429;    font-size: 11px;    font-weight: 700;    text-transform: uppercase;    text-shadow: 0 1px 0 rgba(19,74,70,0);    transition: all .3s ease-in-out;    border-radius: 3px;    background: rgba(122,184,147,0);        &:after {      position: absolute;      content: "";      width: 0;      height: 0;      top: 100%;      left: 50%;      margin-left: -3px;      border-left: 3px solid transparent;      border-right: 3px solid transparent;      border-top: 3px solid rgba(122,184,147,0);      transition: all .3s ease-in-out;    }  }}.balloon:focus,.balloon:active {  color: #377D6A;  text-indent: 0;  background: #fff;    &::-webkit-input-placeholder {    color: #aaa;  }  + label {    color: #fff;    text-shadow: 0 1px 0 rgba(19,74,70,.4);    background: rgba(122,184,147,1);    transform: translateY(-40px);        &:after {      border-top: 4px solid rgba(122,184,147,1);    }  }}

看完了这篇文章,相信你对“纯CSS3如何实现input输入框动画样式库”有了一定的了解,如果想了解更多相关知识,欢迎关注编程网行业资讯频道,感谢各位的阅读!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

纯CSS3如何实现input输入框动画样式库

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

纯CSS3如何实现input输入框动画样式库

小编给大家分享一下纯CSS3如何实现input输入框动画样式库,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!分享一个用纯 CSS3 实现的,漂亮的 input 输入框动画样式库-Text input love。点击每个输入
2023-06-08

Vue如何实现动态渲染input输入框

本文小编为大家详细介绍“Vue如何实现动态渲染input输入框”,内容详细,步骤清晰,细节处理妥当,希望这篇“Vue如何实现动态渲染input输入框”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。问题描述就比如现在
2023-07-04

纯css如何实现输入框placeholder动效及输入校验

小编给大家分享一下纯css如何实现输入框placeholder动效及输入校验,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!背景话不多说,我们能否用纯css实现以下
2023-06-08

如何使用CSS3实现input多选框自定义样式

小编给大家分享一下如何使用CSS3实现input多选框自定义样式,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!原理:首先把input元素隐藏掉,然后用CSS设置label元素(其他元素也可以)的样式,选中时的样式使用inp
2023-06-08

CSS3中input框如何实现类似Google登录的动画效果

这篇文章给大家分享的是有关CSS3中input框如何实现类似Google登录的动画效果的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。 用css3将input框写出类似Google登录页面的动画效果效果一代码如下C
2023-06-08

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录