天天看點

web期末作業設計網頁_傳統文化設計題材_手工藝木雕 (1)

📂文章目錄

  • ​​二、📚網站介紹​​
  • ​​三、🔗網站效果​​
  • ​​▶️1.視訊示範​​
  • ​​🧩 2.圖檔示範​​
  • ​​四、💒 網站代碼​​
  • ​​🧱HTML結構代碼​​
  • ​​🏠CSS樣式代碼​​
  • ​​五、🎁更多源碼​​

二、📚網站介紹

📔網站布局方面:計劃采用目前主流的、能相容各大主流浏覽器、顯示效果穩定的浮動網頁布局結構。

📓網站程式方面:計劃采用最新的網頁程式設計語言HTML5+CSS3+JS程式語言完成網站的功能設計。并確定網站代碼相容目前市面上所有的主流浏覽器,已達到打開後就能即時看到網站的效果。

📘網站素材方面:計劃收集各大平台好看的圖檔素材,并精挑細選适合網頁風格的圖檔,然後使用PS做出适合網頁尺寸的圖檔。

📒網站檔案方面:網站系統檔案種類包含:html網頁結構檔案、css網頁樣式檔案、js網頁特效檔案、images網頁圖檔檔案;

📙網頁編輯方面:網頁作品代碼簡單,可使用任意HTML編輯軟體(如:​

​Dreamweaver、HBuilder、Vscode 、Sublime 、Webstorm、Text 、Notepad++​

​​ 等任意html編輯軟體進行運作及修改編輯等操作)。

其中:

(1)📜html檔案包含:其中index.html是首頁、其他html為二級頁面;

(2)📑 css檔案包含:css全部頁面樣式,文字滾動, 圖檔放大等;

(3)📄 js檔案包含:js實作動态輪播特效, 表單送出, 點選事件等等(個别網頁中運用到js代碼)。

三、🔗網站效果

▶️1.視訊示範

N34JP-傳統手工藝術雕刻帶素材(3頁)

🧩 2.圖檔示範

web期末作業設計網頁_傳統文化設計題材_手工藝木雕 (1)
web期末作業設計網頁_傳統文化設計題材_手工藝木雕 (1)

四、💒 網站代碼

🧱HTML結構代碼

<!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=utf-8" />
<title>傳統手工藝 木雕</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>

<body>
<!----網頁開始------>
<div class="main">
<!----top開始------>
<div class="top">
<div class="logo"><img src="img/logo.jpg" /></div>
<div id="nav">
<ul>
<li><a href="index.html">網站首頁</a></li>
<li><a href="fenlei.html">木雕分類</a></li>
<li><a href="jingdian.html">木雕經典</a></li>
</ul>
</div>
</div>
<div class="banner"><img src="img/banner1.jpg" /></div>
<div class="box01">
<div class="ner">
<img src="img/banquan01.jpg">
<div class="wenz">
<div class="tex">木雕簡介</div>
<p>木雕是雕塑的一種,在我們國家常常被稱為"民間工藝"。木雕可以分為立體圓雕、根雕、浮雕三大類。木雕是從木工中分離出來的一個工種,在我們國家的工種分類中為"精細木工"。以雕刻材料分類的民間美術品種。一般選用質地細密堅韌,不易變形的樹種如楠木、紫檀、樟木、柏木、銀杏、沉香、紅木、龍眼等。采用自然形态的樹根雕刻藝術品則為"樹根雕刻"。</p>
</div>
</div>
</div>
<div class="box02">
<div class="txt">木雕圖鑒</div>
<div class="box02-ner">
<div class="left">
<p>木雕是雕塑的一種,在我們國家常常被稱為"民間工藝"。</p>
<img src="img/box01.jpg" />
</div>
<div class="right">
<img src="img/box02.jpg" />
<img class="mar23" src="img/box03.jpg" />
</div>
</div>
</div>


<div class="foot">
<p>版權所有:傳統手工藝 木雕</p>
</div>


</div>

</body>
</html>      

🏠CSS樣式代碼

@charset "utf-8";
/* CSS Document */


body{ margin:0 auto; font-size:14px; font-family: "微軟雅黑"; line-height:22px; background:#c0c0c0;    }

div,p,input,ul,li,img,h1,h2,h3{ height:auto; margin:0;; padding:0; vertical-align:middle ;}

li{ list-style:none;}

 a{color:#333;text-decoration:none;}

 a:link{ color:#333;}

 a:hover {color:#c50d0d;text-decoration:none;overflow:hidden;}

/*---網頁開始-----*/
.main{ width:1080px; height:auto; overflow:hidden; min-height:1000px; margin:0 auto; background:#FFF;}

/*---top開始-----*/
.top{ width:100%; height:120px;}
.logo{ width: 202px;

height: 68px;

float: left;

margin-top: 30px;

margin-left: 40px;}

#nav{ width: 655px;
height: 50px;
background: url(../img/nav.png) no-repeat;
margin: 0 auto;
margin-left: 10px;
float: left;
margin-top:40px; margin-left:45px;}
#nav ul{ width:655px; height:50px; line-height:50px; font-size:14px;  margin:0 auto;}
#nav ul li{ width:200px; height:50px; line-height:50px; float:left; text-align:center;}
#nav ul li a {
font-family: "微軟雅黑";
font-size: 18px;
margin-left: 2px;
display: block;
color:#FFF;
}

.banner{ width:1080px; height:287px; }
.box01{ width:967px; height:300px; padding:54px 38px 61px 75px;} 
.box01 .ner{ width:966px; height:300px;}
.box01 .ner img{ float:left}
.box01 .wenz{width: 467px;
height: 258px;
background:#eeeeee;
padding: 20px 30px;
float: left;}
.box01 .wenz .tex{ font-size:30px; height:45px; line-height:45px;}
.box01 .wenz p{ font-size:18px; line-height:30px;}
.box02{ width:1080px; height:470px;}
.txt{ height:50px; line-height:50px; margin-top:50px;  text-align:center; font-size:30px;}
.box02-ner{ width:787px; height:420px; margin:0 auto;}
.box02-ner .left{ width:481px; height:420px; margin-right:23px;float:left; }
.box02-ner .left p{  font-size:16px; text-align:center; height:40px; line-height:40px;}
.box02-ner .right{ width:283px; height:420px; float:left;}
.mar23{ margin-top:23px;}

.foot{ height:90px; margin:0 auto; line-height:90px; text-align:center; font-size:16px; background:#967847; margin-top:30px; color:#FFF}

.ccun{ height:607px; width:1020px;  margin-bottom:55px; padding:30px;}
.ccun-tit{ width:1080px; height:60px; color:#ee7421; text-align:center; font-size:30px;  line-height:60px;}
.ccun-shang{ width: 950px;
height: 212px;
padding: 10px 0px;
margin: 0 auto; }
.ccun-shang ul{}
.ccun-shang ul li{ width:316px; height:207px; float:left; text-align:center;}
.ccun-xia{ width: 1010px;
height: 260px;
margin: 0 auto;}
.ccun-xia ul{}
.ccun-xia ul li{  width: 236px;
    height: 180px;
    border: #967847 1px solid;
    margin: 0px 28px;
    border-radius: 10px;
    float: left;
    padding:20px;

}
.ccun-xia ul li h1{ font-weight:normal;font-size:16px; height:40px; line-height:40px;  text-align:center;}
.ccun-xia ul li p{ color:#000000; font-size:12px; line-height:25px;}
.jies {
    width: 964px;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-top: 20px;
    margin-bottom: 50px;
}
.lv-box{ width:1000px; height:225px; padding:20px;}
.lv-box img{ width:300px; height:203px; float:left; margin-right:20px;}
.lv-box-r{ width:605px; height:225px; float:left;}
.lv-box .lv-tit{ font-size:16px; height:40px; line-height:40px; font-weight:bold;}
.lv-box p{ font-size:14px; line-height:30px; float:left; text-indent:2em;}      

五、🎁更多源碼

繼續閱讀