CSS執行個體(五):簡潔的欄目實現方式

來源:互聯網
上載者:User

今天花了點兒時間,琢磨了一下如何簡潔的實現網頁上常用的欄目。就是下面的這種東西,我稱之為欄目,不知道別人叫它什麼:

  以下是我的HTML檔案及CSS檔案,可以便捷地進行樣式切換。如果誰有更簡潔的方式,請留言指教。

  HTML檔案:Html代碼  

  1. <?xml version="1.0" encoding="UTF-8" ?>  
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  3. <html xmlns="http://www.w3.org/1999/xhtml">  
  4. <head>  
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />  
  6. <title>Insert title here</title>  
  7. <link href="column.css" style="text/css" rel="stylesheet"/>  
  8. <script type="text/javascript">  
  9.     var gIndex = 1;  
  10.     function doSwitch(){  
  11.         var e = document.getElementById('info');  
  12.         /*下面的變數是e,代碼高亮好像有個BUG,閱讀請注意。*/  
  13.         ee.className = e.className.split(' ')[0]+' s'+(gIndex%3+1);  
  14.         gIndex++;  
  15.     }  
  16. </script>  
  17. </head>  
  18. <body>  
  19. <ul class="column s1" id="info">  
  20.     <li class="title"><div>資訊公示</div></li>  
  21.     <li><a href="#">CSS</a></li>  
  22.     <li><a href="http://wallimn.iteye.com">http://wallimn.iteye.com</a></li>  
  23.     <li><a href="#">很長文本自動截斷,一切皆有可能,一切皆有可能,一切皆有可能,一切皆有可能</a></li>  
  24.     <li class="tail"><a href="#">更多...</a></li>  
  25. </ul>  
  26. <br/>  
  27. <input type="button" value="樣式切換" onclick="doSwitch()" />  
  28. </body>  
  29. </html>  

  CSS檔案:Html代碼  

  1. ul.column{  
  2.     padding:0;  
  3.     margin:0;  
  4.     font:normal 12px "宋體";  
  5.     border:1px solid #000;  
  6. }  
  7. ul.column li{  
  8.     height:26px;  
  9.     line-height:26px;  
  10.     margin:0 4px;  
  11.     border-bottom:1px dashed #ccc;  
  12.     vertical-align:middle;  
  13.     padding-left:24px;  
  14.     white-space:nowrap;  
  15.     text-overflow:ellipsis;  
  16.     overflow:hidden;  
  17. }  
  18. ul.column li,ul.column li.title div{  
  19.     background:url("column.gif") no-repeat;  
  20. }  
  21. ul.column li a{  
  22.     text-decoration:none;  
  23. }  
  24. ul.column li a:hover{  
  25.     color:red;  
  26. }  
  27. ul.column li.title,ul.column li.tail{  
  28.     border-width:0;  
  29. }  
  30. ul.column li.title{  
  31.     background-repeat:repeat-x;  
  32.     margin:0;  
  33.     padding:0;  
  34. }  
  35. ul.column li.tail{  
  36.     text-align:right;  
  37.     padding-right:12px;  
  38.     background-image:none;  
  39. }  
  40.   
  41. /*1*/  
  42. ul.s1{  
  43.     width:300px;  
  44. }  
  45. ul.s1,ul.s1 li{  
  46.     border-color:#2e9803;  
  47. }  
  48. ul.s1 li{  
  49.     background-position: 0 -52px;  
  50. }  
  51. ul.s1 li.title{  
  52.     background-position: 0 -26px;  
  53. }  
  54. ul.s1 li.title div{  
  55.     background-position: 0 0;  
  56.     padding-left:24px;  
  57. }  
  58. /*2*/  
  59. ul.s2{  
  60.     width:300px;  
  61. }  
  62. ul.s2,ul.s2 li{  
  63.     border-color:#9438d4;  
  64. }  
  65. ul.s2 li{  
  66.     background-position: 0 -130px;  
  67. }  
  68. ul.s2 li.title{  
  69.     background-position: 0 -104px;  
  70. }  
  71. ul.s2 li.title div{  
  72.     background-position: 0 -78px;  
  73.     padding-left:24px;  
  74. }  
  75. /*3*/  
  76. ul.s3{  
  77.     width:300px;  
  78. }  
  79. ul.s3,ul.s3 li{  
  80.     border-color:#9bb8d2;  
  81. }  
  82. ul.s3 li{  
  83.     background-position: 0 -208px;  
  84. }  
  85. ul.s3 li.title{  
  86.     background-position: 0 -182px;  
  87. }  
  88. ul.s3 li.title div{  
  89.     background-position: 0 -156px;  
  90.     padding-left:24px;  
  91. }  

  用到的圖片:

相關文章

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.