zoukankan      html  css  js  c++  java
  • 四个div块点击某个突出显示

    css:.pollTitle {
        margin-top: -1%;
        margin-bottom: 0.3%;
        margin-left: -1.3%;
        margin-right:2%;
        100%;
    }

        .pollTitle a {
            text-decoration: none;
            color: #000;
            
            height: 40px;
            line-height: 40px;
            font-size: 17px;
            font-family: 微软雅黑;
        }

    .tilte_con {
        129px;
        height: 40px;
        border: 1px solid #808080;
        text-align: center;
        float: left;
    }

    div:

     <div class="pollTitle">
                    <div class="tilte_con" id="" onclick="stateCssCorlor(this)">
                        <a href="#">全部</a>
                    </div>
                    <div class="tilte_con" id="" onclick="stateCssCorlor(this)">
                        <a href="#">待发货</a>
                    </div>
                    <div class="tilte_con" id="" onclick="stateCssCorlor(this)">
                        <a href="#">已发货</a>
                    </div>
                    <div class="tilte_con" id="" onclick="stateCssCorlor(this)">
                        <a href="#">已完成</a>
                    </div>
                    <div class="tilte_con" id="" onclick="stateCssCorlor(this)">
                        <a href="#">已取消</a>
                    </div>
                    <div class="tilte_con" id="" onclick="stateCssCorlor(this)">
                        <a href="#">已付款</a>
                    </div>
                    <div class="tilte_con" id="" onclick="stateCssCorlor(this)">
                        <a href="#">退货处理</a>
                    </div>
                </div>

    jquery:
        $('.tilte_con').css({ "border-top": "1px solid #808080", "font-size": "17px", "font-weight": "400" });
        $(objThis).css({ "border-top": "2px solid #ff6a00", "font-size": "18px", "font-family": "微软雅黑", "font-weight": "bold" });

  • 相关阅读:
    希望多年以后的自己不再如此迷茫
    【转载】撒旦(Satan 4.2)勒索病毒最新变种加解密分析
    java单例模式
    关于double/float 两种基本类型精度丢失的总结
    关于ecplise中一些很实用的技巧
    安装SQL Server和卸载SQL Server步骤
    我进入部门的第一周
    mysql数据库在Linux和windows下免安装实现以及框架开发碰到的问题
    jenkins发布docker到mesos
    u盘作为git仓库,完成不同地方的代码同步
  • 原文地址:https://www.cnblogs.com/wangtiantian/p/5032523.html
Copyright © 2011-2022 走看看