核心属性
::placeholder 改变输入框中占位文字的样式
:focus + width + color + text-align 鼠标点击输入框后改变它和占位文字的样式
text-indent: -9999px 隐藏按钮中的文字
:focus + display + background-size 鼠标点击输入框后出现右边的图标按钮
-
<div class="wrapper">
-
<div class="middle">
-
<input type="email" value="" name="EMAIL" class="email-field" id="email-field" placeholder="输入文字">
-
<input type="submit" value="Subscribe" name="subscribe" id="subscribe-button" class="">
-
</div>
-
</div>
-
body {
-
color: #efaa9d;
-
background-color: #f05133;
-
text-align: center;
-
}
-
::placeholder {
-
color: #f4f2ca;
-
opacity: .8;
-
}
-
.email-field {
-
display: inline-block;
-
width: 80px;
-
padding: .9em 1.8em;
-
color: #f4f2ca;
-
background-color: #d8492e;
-
border: none;
-
border-radius: 4px;
-
outline: none;
-
cursor: pointer;
-
text-align: center;
-
transition: all .1s linear;
-
}
-
.email-field:hover {
-
background-color: #d0432a;
-
}
-
.email-field:focus {
-
width: 200px;
-
color: #efaa9d;
-
outline: none;
-
text-align: left;
-
cursor: inherit;
-
}
-
#subscribe-button {
-
display: none;
-
width: 35px;
-
height: 35px;
-
border: none;
-
background: url(https://pics.codecolor.cn/morphing-input/arrow-circle-on-right.svg) no-repeat;
-
background-size: 13px;
-
background-position: 0 1px;
-
text-indent: -9999px;
-
opacity: .25;
-
cursor: pointer;
-
transition: all .2s linear;
-
}
-
#subscribe-button:hover {
-
opacity: .33;
-
}
-
.email-field:focus + #subscribe-button {
-
display: inline-block;
-
background-size: 33px;
-
}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- ajax实现输入提示效果
- 纯 CSS3 实现打字/输入的效果
- CSS :placeholder-shown伪类实现输入框浮动文字效果
- Android输入系统(一)输入事件传递流程和InputManagerService的诞生
- Android输入系统(四)输入事件是如何分发到目标窗口的?
- Android输入系统(二)IMS的启动过程和输入事件的处理
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
数据库索引设计与优化
【美】Tapio Lahdenmaki、【美】Michael Leach / 曹怡倩、赵建伟 / 电子工业出版社 / 2015-6 / 79.00元
《数据库索引设计与优化》提供了一种简单、高效、通用的关系型数据库索引设计方法。作者通过系统的讲解及大量的案例清晰地阐释了关系型数据库的访问路径选择原理,以及表和索引的扫描方式,详尽地讲解了如何快速地估算SQL 运行的CPU 时间及执行时间,帮助读者从原理上理解SQL、表及索引结构、访问方式等对关系型数据库造成的影响,并能够运用量化的方法进行判断和优化,指导关系型数据库的索引设计。 《数据库索......一起来看看 《数据库索引设计与优化》 这本书的介绍吧!