CSS漸層統計直條圖_經驗交流

來源:互聯網
上載者:User
用作圖工具作一個漸層的長度.看起來能好看一點(寬:187px;高15px)
本來設想是當12%時,圖片從左到12%的位置顯示,餘下的88%不顯示,但不佔地(看起來和1px的圖片底沒什麼區別).下午時去網羅了一班.發現不佔地是不太可能的.
要隱藏圖片餘下的百分比,先想到了評分.亮和暗用了一張圖片,各占圖片總高度的一半.我寫下了:

依次從10%-100%,見不到效果,換這個是可以不過在盒子內必須要有內容.
昨天晚上沒寫出來.下午google了也沒有找到類4漸層的.不過從其中一個樣本中得到了靈感.
URL:http://apples-to-oranges.com/blog/post/css-for-bar-graphs/?id=55
中的:Complex CSS Bar Graph
馬上得到了這個:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>無標題文檔</title> <style type="text/css"> dl{margin:0;padding:0;width:187px;} dd{position:relative;display:block;float:left;width:187px;height:15px; margin:0;border:1px solid #eee;} * html dd{ float: none; } dd div{position:relative;background:url("../image/default/Percent.gif");height:15px;width:100%;text-align:right;} </style> </head> <body> <dl> <dd> </dd> </dl> <dl> <dd> </dd> </dl> <dl> <dd> <strong>55%</strong> </dd> </dl> <dl> <dd> <strong>55%</strong> </dd> </dl> <dl> <dd> <strong>55%</strong> </dd> </dl> <dl> <dd> <strong>55%</strong> </dd> </dl> <dl> <dd> <strong>65%</strong> </dd> </dl> <dl> <dd> <strong>75%</strong> </dd> </dl> <dl> <dd> <strong>85%</strong> </dd> </dl> <dl> <dd> <strong>95%</strong> </dd> </dl> <dl> <dd> <strong>100%</strong> </dd> </dl> </body> </html>
[Ctrl+A 全選 注:如需引入外部Js需重新整理才能執行]
有同需求的兄弟可以參考一下
  • 相關文章

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.