應用WEB標準執行個體:列表頁面的製作_經驗交流

來源:互聯網
上載者:User

執行個體:

整體觀察思考:

在開始製作頁面前,我們首先要觀察圖的結構,考慮怎樣布局,布局對一個網站來說非常重要,他是整個體系的骨骼。

再看此圖

很經典的三行兩列結構,分為四塊,TOP、RIGHT、LEFT、BOTTOM。如

以上我們思考過整體的結構,接下來我們要考慮如何把思考出來的結構變化成"骨骼"

如(盒模型來分析)

製作流程:

主體製作 --> 細節製作

一、製作主體:

xhtml:





css:

@import url("http://www.07art.com/public/public.css");
.editorChoose{width:591px;height:400px;border:1px solid #aaa;background:#fff;}
/*TOP內容*/
.editorChoose h1{height:30px;line-height:30px;border-bottom:1px solid #aaa;text-align:center;font-weight:bold;color:#000;background:#efefef;}
/*LEFT內容*/
.edLeft{float:left;width:142px;height:317px;border-right:1px solid #aaa;overflow:auto;}
/*RIGHT內容*/
.edRight{float:right;width:448px;height:317px;overflow:auto;}
/*BOTTOM內容*/
.edBottom{clear:both;padding-top:15px;height:35px;border-top:1px solid #aaa;text-align:center;background:#efefef;}

骨骼出來了,接下來我們該在骨骼上添加"血"遇"肉",這樣才算完整的.

二、細節製作:

(1) TOP製作

先來看一下TOP容器中的細節部分。

看上去這裡很簡潔,文字置中,關閉按鈕居右並且距上8px、距右10px的距離。

考慮TOP的結構,關閉按鈕在右邊,那麼我們就要給關閉按鈕一個右浮動(float:right;)。

注意:當關閉按鈕要右浮動的時候,關閉按鈕放在文字前面。

選擇圖片

相對應的css

.editorChoose h1{height:30px;line-height:30px;border-bottom:1px solid #aaa;text-align:center;font-weight:bold;color:#000;background:#efefef;}/*文字置中*/
.editorChoose h1 img{float:right;margin:8px 10px 0px 0px;}/*圖片居右*/

(2) RIGHT製作

看一下RIGHT容器中的細節部分。

紅塊地區為重複地區,所以只做一塊,然後copy就可以.




相對應的css

.edRight div{width:95px;padding:18px 0px 12px 10px;float:left;}
.edBottom{clear:both;padding-top:15px;height:35px;border-top:1px solid #aaa;text-align:center;background:#efefef;}

(3) LEFT製作

看一下RIGHT容器中的細節部分。

這是一個列表性質的圖,首先就要考慮ul li。

h2 標籤寫相簿“相簿清單”位置

ul 寫下面的列表,並用overflow:auto;來控制捲軸,

xhtml:

相簿清單



  • 我的一家幸福生活

  • 包身工是怎麼死的?

  • 楊文你真是個混蛋!

  • 小白被拋棄

  • 我的一家幸福生活

  • 梔子花開

  • 我的野蠻女友

  • 藍色生死戀

  • 這該死的愛

  • 湖南大學

  • 新一佳

  • 新一佳

  • 新一佳

  • 新一佳

  • 新一佳

css:

.edLeft h2{padding:1px 1px 0px 1px;height:26px;border-bottom:1px solid #aaa;}
.edLeft h2 span{text-align:center;height:25px;background:#BFBDBD;color:#000;text-align:center;font-weight:bold;line-height:25px;display:block;}
.edLeft{float:left;width:142px;height:317px;border-right:1px solid #aaa;}
.edLeft ul{height:290px;overflow:auto;}
.edLeft li{height:27px;line-height:27px;border-bottom:1px solid #aaa;padding-left:10px;}
.edLeft li a{color:#000;}
.edLeft li a:link,.edLeft dd a:visited{text-decoration:none;}
.edLeft li a:hover{text-decoration:underline;}
.edLeft li.background{background:#ECEBEB;}

(4) BOTTOM製作

這裡我把按鈕寫成input的形式

    

相對應的css

.edBottom input{width:37px;height:22px;color:#000;border:1px solid #555;background:#aaa;}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <!-- ================================================================== general xhtml 1.0 - Main style sheet - design 2007-03-27 Author - 比爾-蓋火鍋 made by mop 《應用WEB標準執行個體:列表頁面的製作》 ================================================================== --> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="description" content="應用WEB標準執行個體:列表頁面的製作" /> <meta name="keywords" content="應用WEB標準執行個體:列表頁面的製作" /> <meta name="author" content="http://www.07art.com" /> <meta name="robots" content="all" /> <title>11111111111</title> <style type="text/css"> @import url("http://www.07art.com/public/public.css"); .editorChoose{width:591px;height:400px;border:1px solid #aaa;background:#fff;} /*TOP內容*/ .editorChoose h1{height:30px;line-height:30px;border-bottom:1px solid #aaa;text-align:center;font-weight:bold;color:#000;background:#efefef;} .editorChoose h1 img{float:right;margin:8px 10px 0px 0px;} /*LEFT內容*/ .edLeft{float:left;width:142px;height:317px;border-right:1px solid #aaa;} .edLeft h2{padding:1px 1px 0px 1px;height:26px;border-bottom:1px solid #aaa;} .edLeft h2 span{text-align:center;height:25px;background:#BFBDBD;color:#000;text-align:center;font-weight:bold;line-height:25px;display:block;} .edLeft{float:left;width:142px;height:317px;border-right:1px solid #aaa;} .edLeft ul{height:290px;overflow:auto;} .edLeft li{height:27px;line-height:27px;border-bottom:1px solid #aaa;padding-left:10px;} .edLeft li a{color:#000;} .edLeft li a:link,.edLeft dd a:visited{text-decoration:none;} .edLeft li a:hover{text-decoration:underline;} .edLeft li.background{background:#ECEBEB;} /*RIGHT內容*/ .edRight{float:right;width:448px;height:317px;overflow:auto;} .edRight div{width:95px;padding:18px 0px 12px 10px;float:left;} .edBottom{clear:both;padding-top:15px;height:35px;border-top:1px solid #aaa;text-align:center;background:#efefef;} /*BOTTOM內容*/ .edBottom input{width:37px;height:22px;color:#000;border:1px solid #555;background:#aaa;} </style> </head> <body> <h1>選擇圖片</h1> <input name="checkbox" type="checkbox" value="" /> <input name="checkbox" type="checkbox" value="" /> <input name="checkbox" type="checkbox" value="" /> <input name="checkbox" type="checkbox" value="" /> <input name="checkbox" type="checkbox" value="" /> <input name="checkbox" type="checkbox" value="" /> <input name="checkbox" type="checkbox" value="" /> <input name="checkbox" type="checkbox" value="" /> <input name="checkbox" type="checkbox" value="" /> <input name="checkbox" type="checkbox" value="" /> <input name="checkbox" type="checkbox" value="" /> <input name="checkbox" type="checkbox" value="" /> <input name="checkbox" type="checkbox" value="" /> <input name="checkbox" type="checkbox" value="" /> <input name="checkbox" type="checkbox" value="" /> <h2><span>相簿清單</span></h2> <ul> <li>我的一家幸福生活</li> <li>包身工是怎麼死的?</li> <li>楊文你真是個混蛋!</li> <li class="background">小白被拋棄</li> <li>我的一家幸福生活</li> <li>梔子花開</li> <li>我的野蠻女友</li> <li>藍色生死戀</li> <li>這該死的愛</li> <li>湖南大學</li> <li>新一佳</li> <li>新一佳</li> <li>新一佳</li> <li>新一佳</li> <li>新一佳</li> </ul> <input type="button" name="button" value="確 定"/>    <input name="button" type="button" value="取 消"/> </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.