📂文章目录
- 二、📚网站介绍
- 三、🔗网站效果
- ▶️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.视频演示
J26JP 二十四节气 5页 无js 浮动定位
🧩 2.图片演示
四、💒 网站代码
🧱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">
<link href="css/index.css" rel="stylesheet" type="text/css">
<title></title>
</head>
<body>
<!--header begin-->
<div class="header">
<h1><strong>二十四节气</strong> <em>智慧的结晶</em></h1>
<hr size="2" color="#d1d1d1" width="980px">
</div>
<!--header end-->
<!--fenlei begin-->
<div class="fenlei">
<h2> <a href="">首页</a> <a href="cun.html">春雨惊春清谷天</a> <a href="xia.html">夏满芒夏暑相连</a> <a href="qiu.html">秋处露秋寒霜降</a> <a href="dong.html">冬雪雪冬小大寒</a> </h2>
<img style="width: 100%;" src="picture/1(2).png">
<br><br>
<p>春雨惊春清谷天,夏满芒夏暑相连。</p>
<p>秋处露秋寒霜降,冬雪雪冬小大寒。</p>
<p>每月两节不变更,最多相差一两天。</p>
<p>上半年来六廿一,下半年是八廿三。</p>
<br>
</div>
<!--fenlei end-->
<!--bestseller begin-->
<div class="bestseller">
<img src="picture/1.png" alt="">
<p class="txt">“二十四节气”与“十二月建”是干支历的基本内容,十二月建是依据二十四节气而来的节气月。以北斗七星斗柄所指的方位作为确定月份的标准,称为斗建(月建)。斗柄顺时针旋转一圈为一周期,谓之一“岁”。每岁之中,斗柄旋转而依次指为十二辰,称为“十二月建”。十二月建分别为:正月建寅,二月建卯,三月建辰,四月建巳,五月建午,六月建未,七月建申,八月建酉</p>
<br>
</div>
<!--bestseller end-->
<!--footer begin-->
<div class="shouhou">
</div>
<div class="boss">
<img src="picture/1.jpg" alt="">
<img src="picture/2.jpg" alt="">
<img src="picture/3.jpg" alt="">
<img src="picture/4.jpg" alt="">
<img src="picture/5.jpg" alt="">
<img src="picture/6.jpg" alt="">
</div>
<div class="boss">
<p style="height: 60px;"> 春雨惊春清谷天,夏满芒夏暑相连。</p>
<p style="height: 60px;"> 秋处露秋寒霜降,冬雪雪冬小大寒。</p>
<p style="height: 60px;"> 每月两节不变更,最多相差一两天。</p>
<p style="height: 60px;"> 上半年来六廿一,下半年是八廿三。</p>
</div>
</body>
</html>
🏠CSS样式代码
/* CSS Document */
*{
margin:0;
padding:0;
}
body{
font-family: "楷体";
font-size: 16px;
color: #a5a5a5;
background-color: #ededed;
}
.header{
font-family: "微软雅黑";
line-height: 86px;
color: #a5a5a5;
text-align: center;
height: 86px;
width: 980px;
margin:0 auto 7px;
}
.header h1{
font-weight: normal;
}
.header strong{
font-size: 30px;
font-weight: normal;
}
.header em{
font-size: 14px;
font-style: normal;
}
.fenlei{
width: 1300px;
margin:0 auto;
}
.fenlei h2{
font-family: "微软雅黑";
font-size: 14px;
color: #a5a5a5;
line-height: 42px;
height: 42px;
}
.fenlei p{
font-size: 18px;
line-height: 30px;
text-align: center;
}
.bestseller{
width: 1000px;
margin:0 auto;
}
.bestseller .txt{
width: 400px;
float: right;
line-height: 30px;
text-indent: 2em;
}
.bestseller .txt em{
font-style: normal;
text-decoration: underline;
}
.shouhou{
clear: both;
}
.boss{
width: 1200px;
display: flex;
margin:0 auto;
}
.boss h3,.boss p{
text-indent: 2em;
}
.boss h3{
font-family: "微软雅黑";
font-size: 18px;
line-height: 30px;
font-weight: normal;
height: 30px;
}
.boss p{
font-size: 14px;
font-style: italic;
line-height: 26px;
}
.duo{
position: fixed;
right: 3%;
bottom:3%;
}
.fanhui{
text-decoration: none;
color: #999;
}
五、🎁更多源码
1.如果我的博客对你有帮助
请 “👍点赞” “✍️评论” “💙收藏”
一键三连哦!