刚研究了bootstrap中css里面的源码,找到了表单(form)中关于输入框的一些设置,根据要求,label标签和input标签需要一起使用,(屏幕阅读器中不能单独辨认input),如需隐藏label标签,在label中设置.sr-only这个class即可.看了下.form-control这个属性(应用在input标签上),下面是这个css样式.
1 .form-control { 2 display: block; 3 width: 100%; 4 height: 34px; 5 padding: 6px 12px; 6 font-size: 14px; 7 line-height: 1.42857143; 8 color: #555; 9 background-color: #fff; 10 background-image: none; 11 border: 1px solid #ccc; 12 border-radius: 4px; 13 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); 14 box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); 15 -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; 16 -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; 17 transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; 18 }
我们发现它做了transition的效果,box-shadow的ease-in-out .15s的过渡时间,inset表示内阴影,类似ps中blur shadow的效果.改变这个时间可以产生点击input框,那种浅蓝色的效果出现的时间就会相应改变.不过bootstrap这些事件设置的很好,不需要做什么修改,只是给以后做这种类似的效果一个思路罢了.
http://blog.csdn.net/freshlover/article/details/7610269这里有详细的介绍各个参数的.就不多说了.
主要是从中要思考到,动画效果的加入,不单单是一个阴影的使用.