zoukankan      html  css  js  c++  java
  • 进度展示图

    对应样式:

    .tab_flow_step{ background-color: #E6E6E6; margin-bottom: 10px; }
    .tab_flow_step td{ border: 0px solid #d9d9d9; height: 32px !important; font-weight: bold; background-repeat:no-repeat; text-align: center;
      line-height: 32px !important; font-size:14px; padding-right: 20px; }
    .status_past{ background-position:right -0px; background-color: #CEE2FF;
      background-image: url("${pageContext.request.contextPath}/images/bg_flow_step_32.png"); }
    .status_past_last{ background-position:right -32px; background-color: #CEE2FF;
      background-image: url("${pageContext.request.contextPath}/images/bg_flow_step_32.png"); }
    .status_current{ color: white; background-position:right -64px; background-color: #3164AF;
      background-image: url("${pageContext.request.contextPath}/images/bg_flow_step_32.png"); }
    .status_future{ background-position:right -64px;
      background-image: url("${pageContext.request.contextPath}/images/bg_flow_step_32.png"); background-color: #E6E6E6; }
    .status_last{ background-image: none; } 
     
    <table class="tab_flow_step" width="96%" align="center">   
      <td class="status_past_last">新增</td>   
      <td class="status_current">待编辑审核</td>   
      <td class="status_future">待广电审核</td>   
      <td class="status_future">待上架</td>   
      <td class="status_future">已上架</td>   
      <td class="status_future">待下架</td>   
      <td class="status_future status_last">已下架</td>
    </table>
     
    资源图片:
     
  • 相关阅读:
    Use Module and Function instead of Class in Python
    以命令行方式使用Desktop版Ubuntu
    python中两种拷贝目录方法的比较
    查找重复文件并删除的工具
    Manage sshd Service on CentOS
    Java多线程间的数据共享
    并发 总结
    MapReduce 过程分析
    java能不能自己写一个类叫java.lang.System/String正确答案
    生产者消费者模式--阻塞队列--LOCK,Condition--线程池
  • 原文地址:https://www.cnblogs.com/siyu/p/3448222.html
Copyright © 2011-2022 走看看