zoukankan      html  css  js  c++  java
  • 用css3实现各种图标效果(2)

    写在前面

    写的一模一样的css样式,结果却导致原来出来不一样的效果图。

    用chrome的开发者工具查看,比较起来还是一模一样的css样式,可为什么会出现不一样的placeholder效果呢?一个白色粗体,一个灰色正常字体。

    找了老半天找不到原因

    后来才发现是我同事写的框架css里面代码的一句话影响到了

    ::-webkit-input-placeholder {
      color: #a4afc6;
    }

    可是为什么在chrome控制台看不到这句代码呢?请教了一番同事,原来是这样的。

     1、点击控制台“设置”按钮

    2、按如下所示设置,选中“Show user agent shadow DOM”

    3、你就会在elements控制面板里面能看到如下所示

    回归正题,继续我的css各种图标。。。。

    当然在开始之前,还是加上如下这段公共样式吧!

    [class^="u-icon"]
    {
        display: inline-block;
        color: #fff;
        vertical-align: middle;
    }

    各种删除按钮(不用图标只能css来实现)

    html代码如下:

        <span class="u-icon-radioDelete"></span>
        <span class="u-icon-deleteToggle Orange">
            <span class="u-icon-trash"></span>删除
        </span>
        <span class="u-icon-deleteToggle Blue">
            <span class="u-icon-grayTrash"></span>删除
        </span>
        <span class="u-icon-del"></span>
        <span class="u-icon-del on"></span>
        <span class='u-icon-sel more'>搜索更多</span>
        <span class='u-icon-sel on'>搜索更多</span>
        <span class='u-icon-delete'><i></i></span>

    页面显示效果如下:

    css样式代码:

    .u-icon-sel
    {
        position: relative;
        -webkit-box-sizing: border-box;
        width: 32%;
        height: 32px;
        line-height: 30px;
        margin-bottom: 4px;
        border: 1px solid #a4afc6;
        border-radius: 3px;
        color: #a4afc6;
        text-align: center;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    
    .u-icon-sel.on
    {
        overflow: hidden;
        border-color: #ff5d1d;
        color: #000;
    }
    
    .u-icon-sel.on:before
    {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 18px;
        height: 18px;
        background: url(http://webresource.c-ctrip.com/ResCorpMobile/R1/img/common-graphic37.png?20150423) no-repeat -23px -152px/150px 240px;
        content: '';
    }
    
    .u-icon-sel.more
    {
        color: #6daeee;
    }
    .u-icon-deleteToggle
    {
        width: 75px;
        height: 45px;
        line-height: 45px;
        text-align: center;
    }
    
    .u-icon-deleteToggle.Blue
    {
        background-color: #3e74b9;
    }
    
    .u-icon-deleteToggle.Orange
    {
        background-color: #ff5d1d;
    }
    
    /*白色垃圾桶、灰色垃圾桶图标*/
    .u-icon-trash,.u-icon-grayTrash
    {
        background: url(http://webresource.c-ctrip.com/ResCorpMobile/R1/img/common-graphic37.png?20150423) no-repeat 0 0/150px 240px;
    }
    .u-icon-trash
    {
        background-position: 0 -84px;
        width: 16px;
        height: 18px;
    }
    .u-icon-grayTrash {
        display: inline-block;
        width: 12px;
        height: 18px;
        margin-right: 8px;
        vertical-align: -2px;
        background-position: -3px -178px;
    }
    /*不用任何图标实现删除icon效果*/
    .u-icon-delete
    {
        position: absolute;
        bottom: 5px;
        right: 0;
        width: 40px;
        height: 40px;
    }
    /*给before伪类设置一个默认背景色 设置content*/
    .u-icon-delete:before
    {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 20px;
        height: 20px;
        border-radius: 20px;
        background-color: #8e8e93;
        content: ''; 
    }
    /*给after伪类   -webkit-transform: rotate(-45deg);旋转    background-color: #e1e2e4;设置X的一边的颜色*/
    .u-icon-delete:after
    {
        position: absolute;
        top: 19px;
        left: 14px;
        width: 12px;
        height: 2px;
        -webkit-transform: rotate(-45deg);
        background-color: #e1e2e4;
        content: '';
    }
    /* -webkit-transform: rotate(45deg); 运用的特别巧秒*/
    .u-icon-delete i
    {
        position: absolute;
        top: 19px;
        left: 14px;
        width: 12px;
        height: 2px;
        background-color: #e1e2e4;
        -webkit-transform: rotate(45deg);
    }
    /*橙色背景中间一白色横杠的删除icon */
    .u-icon-del
    {
        position: relative;
        width: 24px;
        height: 24px;
        border: 1px solid #ff5d1d;
        -webkit-border-radius: 24px;
        border-radius: 24px;
        -webkit-transition: 300ms ease-in-out;
        transition: 300ms ease-in-out;
        background-color: #ff5d1d;
    }
    
    .u-icon-del.on,.on .u-icon-del 
    {
        -webkit-transform: rotateZ(90deg);
    }
    /*这里的background-color: #fff;和 content: "20";实现白色横杠*/
    .u-icon-del::after
    {
        position: absolute;
        top: 10px;
        left: 4px;
        width: 16px;
        height: 4px;
        background-color: #fff;
        content: "20";
    }
    
    .u-icon-radioDelete
    {
        position: relative;
        width: 24px;
        height: 24px;
        border: 1px solid #8AADD8;
        -webkit-border-radius: 24px;
        border-radius: 24px;
        -webkit-transition: 300ms ease-in-out;
        transition: 300ms ease-in-out;
    }
    
    .u-icon-radioDelete::after
    {
        position: absolute;
        top: 11px;
        left: 4px;
        width: 16px;
        height: 2px;
        background-color: #8AADD8;
        color: #8AADD8;
        content: "20";
    }
    
    .u-icon-radioDelete.on,.on .u-icon-radioDelete 
    {
        -webkit-transform: rotateZ(90deg);
        -ms-transform: rotateZ(90deg);
    }

    加加减减图标

    html代码如下:

        <i class='u-icon-plus on'></i>
        <i class='u-icon-minus on'></i>
        <i class='u-icon-plus '></i>
        <i class='u-icon-minus '></i>
        <span class="u-icon-addS"></span>
        <span class="u-icon-addB"></span>

    页面显示效果如下:

    css样式代码:

    /*加减标签*/
    /*加标签icon*/
    .u-icon-addS, .u-icon-addB
    {
        width: 60px;
        height: 40px;
    }
    /*加的大icon*/
    .u-icon-addB
    {  position: relative;
        top: 0;
        right: 0;
    }
    /*加的小icon*/
    .u-icon-addS
    {
        position: relative;
        color: #3B8FF8;
    }
    
    .u-icon-addS::before,.u-icon-addS::after, .u-icon-addB::before,.u-icon-addB::after
    {
        position: absolute;
        top: 20px;
        left: 25px;
        width: 12px;
        content: "";
    }
    
    .u-icon-addB::before, .u-icon-addB::after
    {
        border-top: 1px solid #fff;
    }
    
    .u-icon-addS::before,.u-icon-addS::after
    {
        border-top: 2px solid #3B8FF8;
    }
    
    .u-icon-addB::after,.u-icon-addS::after
    {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
    }
    /*加、减按钮*/
    .u-icon-plus, .u-icon-minus
    {
        position: relative;
        width: 30px;
        height: 3px;
        background-color: #a9b3c9;
        box-shadow: 0 1px 1px #959bab inset;
        border-radius: 3px;
    }
    
    .u-icon-plus.on, .u-icon-minus.on,.on.u-icon-plus::before,
    .on .u-icon-plus,.on .u-icon-minus ,.on .u-icon-plus ::before
    {
        background-color: #6daeee;
        box-shadow: 0 1px 1px #6a9aca inset;
    }
    
    .u-icon-plus::before
    {
        position: absolute;
        left: 13px;
        width: 3px;
        height: 30px;
        border-radius: 3px;
        box-shadow: 1px 0 1px #959bab inset;
        background-color: #a9b3c9;
        -webkit-transform: translate(0,-13.5px);
        transform: translate(0,-13.5px);
        text-align: center;
        content: "";
    }

    问号图标

    html代码如下:

    <span class="u-icon-qa"></span>

    页面显示效果如下:

    css样式代码:

    .u-icon-qa {
        width: 60px;
        height:44px;
        text-align: center;
        color: #FFFFFF;
        font-size: 18px;
    
    }
    .u-icon-qa:before {
        position: absolute;
        top:10px;
        right: 15px;
        width: 24px;
        height: 24px;
        background: #67a5e2;
        -webkit-border-radius: 24px;
        border-radius: 24px;
        content: '';
    
    }
    .u-icon-qa:after {
        position: absolute;
        top:10px;
        right: 22px;
        content: '?';
    
    }

    一行被选中状态图标

    html代码如下:

    <span class="u-icon-checkTitle"></span>

    页面显示效果如下:

    css样式代码:

    .u-icon-checkTitle
    {        
        position: absolute;
        top: 9px;
        right: 13px;
        width: 16px;
        height: 16px;
        border-radius: 100%;
        background: #fff;
        content: '';
    }
    .u-icon-checkTitle::after
    {
        position: absolute;
        top: 2px;
        right: 5px;
        width: 4px;
        height: 8px;
        border-width: 0 2px 2px 0;
        border-color: #ffa124;
        border-style: solid;
        -webkit-transform: rotate(45deg);
        content: '';
    }

    未完待续(如果大家有更好的方法来实现,不用图片,可以麻烦与我交流一下,谢谢!)

    如果您觉得本篇博文对您有所收获,觉得小女子还算用心,请点击右下角的 [推荐],谢谢!

  • 相关阅读:
    消灭WinRAR广告
    DLL:操作数据库和表
    MySQL的概述和基础(学习整理)
    MySQL个人用户的安装配置详解
    Maven的几种新建项目方式
    解决Maven的jar包冲突问题
    Maven Web项目出现org.eclipse.jdt.internal.compiler.classfmt.ClassFormatException错误
    Maven的概述和基础(学习整理)
    从Maven中央仓库下载jar包
    Maven的New中没有Servlet问题(IDEA)
  • 原文地址:https://www.cnblogs.com/liyunhua/p/4536291.html
Copyright © 2011-2022 走看看