CSS应用案例

表单美化

  • 如果body不能直接撑起高,给html标签添加height:100%

  • filter是滤镜,针对的元素里面的所有内容,默认是0px

  • 效果使用background-clip: content-box;,同时设置padding值.clip:裁切

    效果

  • 使用定位剧中的方法:leftmargin配合使用。

  • background: linear-gradient(red 10%,red 20%,green 20%,green 40%,blue 40%);
    background: linear-gradient(transparent 0%,transparent 10%, black 10%,black 11%,transparent 11%);

.father{
display:flex;
}
.son{
            flex:1;
}
            flex: 1;
            /*

            flex决定了宽度

            根据当前富裕宽度[剩余可利用空间]/当前 fiex总和。
            */
  • outline是轮廓。像input标签的点击浅蓝色就可以通过设置outline清除掉

//获得焦点之后,执行CSS
    <style>
        .input1{
            outline: none;
            border: none;
            height: 50px;
            border-bottom: 1px solid black;
        }

        .input1:focus{
            border-bottom-color: red;
        }
        
        .input1::-webkit-input-placeholder{
            transition: .5s;
        }
        .input1:focus::-webkit-input-placeholder{
            transform: scale(0.7) translateY(-10px);
            transform-origin: left top;
        }
    </style>
</head>
<body>
<input type="text" class="input1" placeholder="请输入账号" >
</body>

详尽代码

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>表单美化2</title>
    <style>
        *{
            margin: 0px;
            top: 0px;
        }
        html{
            height: 100%;
        }
        body{
            height: 100%;
        }
        .mask{
            width: 100%;
            height: 100%;
            background-image: url("img/bg.jpg");
            background-size: cover;
            filter: blur(5px);/*这个是添加的滤镜*/
        }
        .drog{
            position: absolute;
            left: 0px;
            top: 0px;
            width: 640px;
            height: 620px;
            border: 1px solid white;
            background-color: rgba(255,255,255,0.8);
            background-clip: content-box;/*规定背景图的绘制区域*/
            padding: 10px;
            left: 50%;
            top: 50%;
            margin-left: -320px;
            margin-top: -310px;
            border-radius: 10px;
        }
        .title{
            text-align: center;
            font-size: 28px;
            margin: 24px 0px;
            display: flex;
        }

        .title .title_name{
            padding: 0px 10px;
        }
        .title .line{
            background: linear-gradient(transparent 49%,black 49%,black 50%,transparent 50%);
            flex:1;
        }

        table{
            width: 100%;
        }
        .td_left{
            text-align: right;
            width: 150px;
        }

        .userInput{
            outline: none;
            height: 40px;
            border:none;
            border-bottom: 1px solid black;
            background-color: rgba(255,255,255,0);
        }
        .userInput:focus{
            border-bottom-color: red;
        }

        .userInput::-webkit-input-placeholder{
            transition: .5s;
        }
        .userInput:focus::-webkit-input-placeholder{
            transform: scale(0.7) translateY(-10px);
            transform-origin: left top;
        }

        /*单选框修改*/
        .chooseGender input{
            display: none;
        }
        .chooseGender label{
            width: 8px;
            height: 8px;
            margin: 1px;
            border: 1px solid #000;
            display: inline-block;
            border-radius: 50%;
            position: relative;
        }

        .chooseGender input:checked +label{
            border-color: #888;
        }
        .chooseGender input:checked+label:before{
            content: '';
            width: 4px;
            height: 4px;
            background-color: red;
            display: inline-block;
            position: absolute;
            border-radius: 50%;
            left: 2px;
            top: 2px;
        }
        /*单选框修改结束*/


        /*多选框修改*/
        .chooseGreens input{
            display: none;
        }
        .chooseGreens label{
            width: 9px;
            height: 9px;
            margin: 1px 1px 0px 1px;
            border: 1px solid dimgrey;
            display: inline-block;
        }
        .chooseGreens input:checked+label{
            border-color: #000;
            position: relative;
        }
        .chooseGreens input:checked +label:before{
            content: '';
            width: 2px;
            height: 7px;
            background-color: red;
            display: inline-block;
            position: absolute;
            transform: rotate(-37deg);
            top: 1px;
            left: 2px;
        }
        .chooseGreens input:checked +label:after{
            content: '';
            width: 2px;
            height: 7px;
            background-color: red;
            display: inline-block;
            position: absolute;
            transform: rotate(29deg);
            top: 1px;
            left: 5px;
        }
        /*单选框修改结束*/


        /*开关效果开始*/
        .addressHidden #addHidd{
            display: none;
        }
        .addressHidden label{
            width: 40px;
            height: 20px;
            border: 1px solid #888;
            display: inline-block;
            border-radius: 15px;
        }
        .addressHidden label span{
            width: 20px;
            height: 20px;
            display: inline-block;
            border-radius: 15px;
            box-shadow: 1px 1px 1px  #ccc;
            background-color: white;
            transition:all  0.5s;

        }
        .addressHidden #addHidd:checked+label{
            background-color: greenyellow;
        }
        .addressHidden #addHidd:checked+label span{
            transform: translateX(20px);
        }
        /*开关效果结束*/

        /*
        开关效果带文字
        */

        .shareToNet #shareNet{
            display: none;
        }
        .shareToNet label{
            display: inline-block;
            width: 40px;
            height: 20px;
            border: 1px solid #888;
            border-radius: 15px;
            transition: 0.3s;
        }
        .shareToNet label .move{
            display: block;
            width: 20px;
            height: 20px;
            box-shadow: 1px 1px 1px #ccc;
            border-radius: 50%;
            background: white;
            transition: 0.3s;
            overflow: hidden;
        }

        .shareToNet #shareNet:checked+label{
            background-color: greenyellow;
        }

        .shareToNet input:checked+label .move{
            transform: translateX(20px);
            box-shadow: none;
        }

        em{
            font-size: 12px;
            font-style: normal;
            float: left;
            width: 50%;
        }
        .shareToNet input:checked+label .move span{
            transform: translateX(-20px);

        }
       .shareToNet .move span{
            width: 40px;
            display: block;
            height: 20px;
            text-align: center;
            transition: .3s;
            /*transform: translateX(-20px);*/
        }

    </style>
</head>
<body>
<div class="mask"></div>

<div class="drog">
    <h2 class="title">
        <span class="line"></span>
        <span class="title_name">用户注册</span>
        <span class="line"></span>
    </h2>

    <table>
        <tbody>
        <tr>
            <td class="td_left">姓名:</td>
            <td><input type="text" placeholder="请输入姓名" class="userInput"></td>
        </tr>

        <tr>
            <td class="td_left">密码:</td>
            <td><input type="text" placeholder="请输入密码" class="userInput"></td>
        </tr>

        <tr>
            <td class="td_left">确认密码:</td>
            <td><input type="text" placeholder="请确认密码" class="userInput"></td>
        </tr>

        <tr>
            <td class="td_left">性别选择:</td>
            <td class="chooseGender">
                <input type="radio" name="gender" id="chooseMan">
                <label for="chooseMan"></label>男
                <input type="radio" name="gender" id="chooseGirl">
                <label for="chooseGirl"></label>女
            </td>
        </tr>

        <tr>
            <td class="td_left">喜爱的菜系:</td>
            <td class="chooseGreens">
                <input type="checkbox" name="greens" id="food_z">
                <label for="food_z"></label>浙菜
                <input type="checkbox" name="greens" id="food_x">
                <label for="food_x"></label>湘菜
                <input type="checkbox" name="greens" id="food_y">
                <label for="food_y"></label>粤菜
                <input type="checkbox" name="greens" id="food_j">
                <label for="food_j"></label>京菜
                <input type="checkbox" name="greens" id="food_s">
                <label for="food_s"></label>苏菜
            </td>
        </tr>

        <tr>
            <td class="td_left">个人简介:</td>
            <td>
                <textarea cols="30" rows="10"></textarea>

            </td>
        </tr>

        <tr>
            <td class="td_left">地址匿名:</td>
            <td class="addressHidden">
                <input type="checkbox" id="addHidd">
                <label for="addHidd">
                    <span></span>
                </label>
            </td>
        </tr>


        <tr>
            <td class="td_left">分享到社交网络:</td>
            <td class="shareToNet">
                <input type="checkbox" id="shareNet">
                <label for="shareNet">
                    <span class="move">
                        <span>
                            <em>on</em>
                            <em>off</em>
                        </span>
                    </span>
                </label>
            </td>
        </tr>

        <tr>
            <td class="td_left"></td>
            <td>
                <input type="submit">
                <input type="reset">
            </td>
        </tr>

        </tbody>
    </table>
</div>
</body>
</html>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,980评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,178评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,868评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,498评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,492评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,521评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,910评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,569评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,793评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,559评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,639评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,342评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,931评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,904评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,144评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,833评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,350评论 2 342

推荐阅读更多精彩内容

  • 1、垂直对齐 如果你用CSS,则你会有困惑:我该怎么垂直对齐容器中的元素?现在,利用CSS3的Transform,...
    kiddings阅读 3,147评论 0 11
  • 问答题47 /72 常见浏览器兼容性问题与解决方案? 参考答案 (1)浏览器兼容问题一:不同浏览器的标签默认的外补...
    _Yfling阅读 13,722评论 1 92
  • 选择qi:是表达式 标签选择器 类选择器 属性选择器 继承属性: color,font,text-align,li...
    love2013阅读 2,301评论 0 11
  • 这篇文字里我会介绍50 个便于使用的 CSS2/CSS3 代码片段给所有的WEB专业人员. 选择IDE开发环境来存...
    JamHsiao_aaa4阅读 1,091评论 0 3
  • “你怎么那么慢,块点!”“知道了!后妈真是不好(小声)”“你说什么?”“没,没什么”“哼,你最好给我老实点,今天学...
    cptbtptpbc阅读 199评论 0 0