首页 > 其他 > 详细

发光输入框

时间:2014-03-24 12:32:32      阅读:364      评论:0      收藏:0      [点我收藏+]

CSS3 transition 以及 box-shadow实现,要注意的是outline:none;

代码:

bubuko.com,布布扣
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        body
        {
            text-align: center;
        }
        input[type=‘text‘]
        {
            font-size: 14px;
            transition: box-shadow linear .2s, border-color linear .2s;
            margin-top: 100px;
            width: 200px;
            padding: 8px;
            border: 1px solid #aaaaaa;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
        }
        input[type=‘text‘]:focus,input[type=‘text‘]:hover
        {
            outline: none;
            box-shadow: 0 0 15px rgba(152,188,235,1.0);
            border-color: rgba(152,188,235,1.0)
        }
    </style>
</head>
<body>
    <input type="text" />
</body>
</html>
bubuko.com,布布扣

Demo:

顺便地,把这个样式应用到了下面的评论框中,博客园可以自己提交css,这个特爽

发光输入框,布布扣,bubuko.com

发光输入框

原文:http://www.cnblogs.com/yedeying/p/3619136.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!