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>
     
    资源图片:
     
  • 相关阅读:
    Synchronized 在 java 中的用法
    ExtJS写的小系统,有源码,献给刚入门的朋友。
    轻松实现Apache,Tomcat集群和负载均衡
    dbms_stats使用(转)
    Java关键字final、static使用总结
    java参数传递总结
    持久化上下文的传播
    主题:Spring Security 2 配置精讲
    Tomcat中web.xml文件的详细说明
    如何学习Ext
  • 原文地址:https://www.cnblogs.com/siyu/p/3448222.html
Copyright © 2011-2022 走看看