当前位置:首页 » 《随便一记》 » 正文

【简单html静态网页代码】基于web学生信息管理系统网站的设计与实现(13个页面)

28 人参与  2024年04月25日 17:10  分类 : 《随便一记》  评论

点击全文阅读


❤ 【作者主页——?获取更多优质源码】

❤ 【学习资料/简历模板/面试资料/ 网站设计与制作】

❤ 【web前端期末大作业——??毕设项目精品实战案例】


一、?‍?网站题目

?‍? 学生管理系统网页设计 、OA管理系统、后台管理模板、智能停车系统、等网站的设计与制作。


二、✍️网站描述

?️HTML网页设计,采用DIV+CSS布局,共有多个页面,排版整洁,内容丰富,主题鲜明,首页使用CSS排版比较丰富,色彩鲜明有活力,导航与正文字体分别设置不同字号大小。导航区域设置了背景图。子页面有纯文字页面和图文并茂页面。

? 一套优质的?网页设计应该包含 (具体可根据个人要求而定)

页面分为页头、菜单导航栏(最好可下拉)、中间内容板块、页脚四大部分。所有页面相互超链接,可到二三级页面,有多页面组成。页面样式风格统一布局显示正常,不错乱,使用Div+Css技术。菜单美观、醒目,二级菜单可正常弹出与跳转。可选有JS特效,如定时切换和手动切换图片轮播。页面中有多媒体元素,如gif、视频、音乐,表单技术的使用。页面清爽、美观、大方,不雷同。 。不仅要能够把用户要求的内容呈现出来,还要满足布局良好、界面美观、配色优雅、表现形式多样等要求。

三、?网站介绍

?网站布局方面:计划采用目前主流的、能兼容各大主流浏览器、显示效果稳定的浮动网页布局结构。

?网站程序方面:计划采用最新的网页编程语言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代码)。


四、?网站演示

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述


五、⚙️ 网站代码

?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" xml:lang="en">  <head>    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    <title>学生信息管理系统模板</title>    <link href="Style/StudentStyle.css" rel="stylesheet" type="text/css" />    <link      href="Script/jBox/Skins/Blue/jbox.css"      rel="stylesheet"      type="text/css"    />    <link href="Style/ks.css" rel="stylesheet" type="text/css" />    <script      src="Script/jBox/jquery-1.4.2.min.js"      type="text/javascript"    ></script>    <script      src="Script/jBox/jquery.jBox-2.3.min.js"      type="text/javascript"    ></script>    <script      src="Script/jBox/i18n/jquery.jBox-zh-CN.js"      type="text/javascript"    ></script>    <script src="Script/Common.js" type="text/javascript"></script>    <script src="Script/Data.js" type="text/javascript"></script>    <script type="text/javascript">      $().ready(function () {        setStudMsgHeadTabCheck();        showUnreadSysMsgCount();      });      //我的信息头部选项卡      function setStudMsgHeadTabCheck() {        var currentUrl = window.location.href;        currentUrl = currentUrl.toLowerCase();        var asmhm = "";        $("#ulStudMsgHeadTab li").each(function () {          asmhm = $(this).find("a").attr("href").toLowerCase();          if (currentUrl.indexOf(asmhm) > 0) {            $(this).find("a").attr("class", "tab1");            return;          }        });      }      //显示未读系统信息      function showUnreadSysMsgCount() {        var unreadSysMsgCount = "0";        if (Number(unreadSysMsgCount) > 0) {          $("#unreadSysMsgCount").html("(" + unreadSysMsgCount + ")");        }      }      //退出      function loginOut() {        if (confirm("确定退出吗?")) {          StudentLogin.loginOut(function (data) {            if (data == "true") {              window.location = "/Login.aspx";            } else {              jBox.alert(                "退出失败!",                "提示",                new { buttons: { 确定: true } }()              );            }          });        }      }      //更改报考类别      function changeCateory(thisObj, id) {        var oldCateoryId = $("#cateoryId").val();        var cateoryId = "";        if (id != null) {          cateoryId = id;        } else {          cateoryId = thisObj.val();        }        var studentId = $("#studentId").val();        if (cateoryId.length <= 0) {          jBox.tip("报考类别不能为空!");          if (id == null) {            thisObj.val(oldCateoryId);          }        } else {          studentInfo.changeStudentCateory(cateoryId, function (data) {            var result = $.parseJSON(data);            if (String(result.ok) == "true") {              window.location.href = "/Index.aspx";            } else {              jBox.tip(result.message);            }          });        }      }    </script>    <script src="Script/changeOption.js" type="text/javascript"></script>    <script src="Script/rl.js" type="text/javascript"></script>  </head>  <body>    <div class="banner">      <div class="bgh">        <div class="page">          <div id="logo">            <a href="Index.aspx.html">              <img                src="Images/Student/logo.gif"                alt=""                width="165"                height="48"              />            </a>          </div>          <div class="topxx">            <select              onchange="changeCateory($(this))"              style="font-size: 11px; background: #4991cf; color: #fff"            >              <option value="4">远程</option>              <option selected="selected" value="1">自考</option>            </select>            910513201419学员:邹智,欢迎您!            <a href="MyInfo/Index.aspx.html">我的信息</a>            <a href="User/StudentInfor/systemMsge.aspx.html"> 通知</a>            <a href="User/Account/ChangePasswd.aspx.html">密码修改</a>            <a onclick="loginOut()" href="javascript:">安全退出</a>          </div>          <div class="blog_nav">            <ul>              <li><a href="Index.aspx.html">我的信息</a></li>              <li><a href="EducationCenter/Score.aspx.html">教务中心</a></li>              <li><a href="MyAccount/wdcw.aspx.html">我的学费</a></li>              <li>                <a href="OnlineTeaching/StudentMaterial.aspx.html">资料中心</a>              </li>            </ul>          </div>        </div>      </div>    </div>    <div class="page">      <div class="box mtop">        <div class="leftbox">          <div class="l_nav2">            <div class="ta1">              <strong>个人中心</strong>              <div class="leftbgbt"></div>            </div>            <div class="cdlist">              <div>                <a href="MyInfo/Index.aspx.html">我的信息</a>              </div>              <div>                <a href="MyInfo/ClassInfo.aspx.html">班级信息 </a>              </div>              <div>                <a href="User/StudentInfor/Letter.aspx.html">短信息</a>              </div>              <div>                <a href="User/StudentInfor/systemMsge.aspx.html">学院通知</a>              </div>              <div>                <a href="MyInfo/Objection.aspx.html">我的异议</a>              </div>            </div>            <div class="ta1">              <strong>教务中心</strong>              <div class="leftbgbt2"></div>            </div>            <div class="cdlist">              <div>                <a href="EducationCenter/Application.aspx.html">我的报考</a>              </div>              <div>                <a href="EducationCenter/Score.aspx.html">我的成绩</a>              </div>              <div>                <a href="EducationCenter/Book.aspx.html">我的书籍</a>              </div>            </div>            <div class="ta1">              <strong>学习中心</strong>              <div class="leftbgbt2"></div>            </div>            <div class="cdlist">              <div>                <a href="OnlineTeaching/StudentMaterial.aspx.html">资料下载</a>              </div>              <div>                <a href="OnlineTeaching/StudentStudyRecordList.aspx.html"                  >学习历程</a                >              </div>            </div>            <div class="ta1">              <strong>财务中心</strong>              <div class="leftbgbt2"></div>            </div>            <div class="cdlist">              <div>                <a href="MyAccount/wdcw.aspx.html">我的财务</a>              </div>            </div>            <div class="ta1">              <a                href="http://www.csgb.net/login.aspx?userLoginName=2014&userName=邹智&professionId=F40C998A-D9AC-421F-99C9-C024C1DC53AD&flag=sm"                target="_blank"                ><strong>教学系统</strong></a              >              <div class="leftbgbt2"></div>            </div>          </div>        </div>        <div class="rightbox">          <h2 class="mbx">我的学习中心&nbsp;&nbsp;&nbsp;&nbsp;</h2>          <div class="dhbg">            <div class="dh1" style="margin: 0 27px 15px 0">              <div class="dhwz">                <p>                  您共有 <span class="red">0</span>条通知信息                  <span class="red">0 </span>条未读                </p>                <p>                  共有 <span class="red">0 </span>条短信息、                  <span class="red">0</span>个投诉、                  <span class="red"> 0 </span>个异议                </p>                <p>                  有 <span class="red">0</span>个投诉、<span class="red"                    >0 </span                  >个异议、<span class="red">0</span>条短信息未处理                </p>                <div class="btright">                  <a href="User/StudentInfor/Letter.aspx.html">                    <img                      src="images/Student/default/bt_bzr.jpg"                      alt="给班主任发消息"                      width="121"                      height="25"                  /></a>                </div>              </div>            </div>            <div class="dh2">              <div class="dhwz">                <p>                  你有 <span class="red">0</span> 门课程要考                  <a href="EducationCenter/Application.aspx.html" class="red"                    >查看报考计划</a                  >                </p>                <p>                  你已经通过 <span class="red">0 </span>门课程&nbsp;共有                  <span class="red">13</span> 门                  <a href="EducationCenter/Score.aspx.html" class="red"                    >查看成绩</a                  >                </p>                <p>                  已经发放了 <span class="red">0 </span>本书籍                  <a href="EducationCenter/Book.aspx.html" class="red"                    >查看书籍情况</a                  >                </p>                <div class="btright">                  <a href="EducationCenter/Application.aspx.html">                    <img                      src="images/Student/default/bt_jw.jpg"                      alt="进入教务中心"                      width="121"                      height="25"                  /></a>                </div>              </div>            </div>            <div class="dh3" style="margin: 0 27px 15px 0">              <div class="dhwz">                <p>                  <a                    href="http://sm.zk0731.com/User/ExamCenter/ExamPractice/ListExam.aspx?ptid=1"                    >模拟考试</a                  >                </p>                <p>                  <a                    href="http://sm.zk0731.com/User/ExamCenter/ExamPractice/ListExercise.aspx?ptid=3"                    >章节练习</a                  >                </p>                <p>                  <a                    href="http://sm.zk0731.com/User/ExamCenter/ExamPractice/ListExercise.aspx?ptid=2"                    >网上作业</a                  >                </p>                <div class="btright">                  <a                    href="http://sm.zk0731.com/User/ExamCenter/ExamPractice/ListExam.aspx?ptid=1"                  >                    <img                      src="images/Student/default/bt_ks.jpg"                      alt="进入考试中心"                      width="121"                      height="25"                  /></a>                </div>              </div>            </div>            <div class="dh4">              <div class="dhwz">                <p>                  你应交<span class="blue">7800.00</span> 元,实缴                  <span class="green">3700.00</span>元                </p>                <p>欠费 <span class="red">4100.00</span> 元</p>                <p>你总共有<span class="red">3</span> 条财务记录需要确定</p>                <div class="btright">                  <a href="MyAccount/wdcw.aspx.html">                    <img                      src="images/Student/default/bt_cw.jpg"                      alt="进入财务中心"                      width="121"                      height="25"                  /></a>                </div>              </div>            </div>          </div>          <div class="xxlc">            <strong class="lcbt">学历历程</strong>          </div>          <div class="lcbiao">            <div class="lctime">2014-05-01</div>            <div class="lctime">2014-05-02</div>            <div class="lctime">2014-05-03</div>            <div class="lctime2">2014-05-04</div>            <div class="lctime">2014-05-05</div>            <div class="lctime">2014-05-06</div>            <div class="lctime">2014-05-07</div>          </div>          <div class="xxjl">            <div align="center">              <span>                18:10 登陆系统                <a></a>              </span>            </div>            <div align="center">              <span>                18:09 登陆系统                <a></a>              </span>            </div>            <div align="center">              <span>                18:06 登陆系统                <a></a>              </span>            </div>            <div align="center">              <span>                11:19 登陆系统                <a></a>              </span>            </div>          </div>        </div>      </div>      <div class="footer">        <p>&copy;copyright 2012 广博教育 csgb.net 版权所有</p>      </div>    </div>    <div style="text-align: center"></div>  </body></html>

六、? 如何让学习不再盲目

21年程序员总结给编程菜鸟的16条忠告

入门期间不要盲目看太多书,找一本网上或身边有经验程序员推荐的教材,先系统的学习。多看帮助文档,帮助文档就像一个游戏的玩法说明通关秘籍,该看就看别太自信。菜鸟容易被对象、属性、方法等词汇迷惑?那是你连最基础知识都还没掌握。不要忽视没一个看起来不起眼的问题,经常总结做到举一反三。没积累足够知识和经验前,你是开发不出一个完整项目的。把最新技术挂在嘴边,还不如把过时技术牢记心中。活到老学到老,只有一招半式是闯不了江湖的。看得懂的书,仔细看;看不懂的书,硬着头皮也要看完。书读百遍其义自见,别指望读一遍就能掌握。请把教程里的例子亲手实践下,即使案例中有完整源码。把在教程中看到的有意义的例子扩充;并将其切实的运用到自己的工作中。不要漏掉教程中任何一个习题——请全部做完并做好笔记。水平是在不断的实践中完善和发展的,你与大牛差的只是经验的积累。每学到一个难点的时候,尝试对朋友或网上分享你的心得,让别人都能看得懂说明你真的掌握。做好保存源文件的习惯,这些都是你的知识积累。遇到问题不要张口就问,要学会自己找答案,比如google、百度和w3cschool上都有很多编程相关资料,你只要输入关键字就能找到你的答案。

七、?更多干货

1.如果我的博客对你有帮助、如果你喜欢我的博客内容,请 “?点赞” “✍️评论” “?收藏” 一键三连哦!

2.?【??????关注我| ?获取更多源码 | 优质文章】 带您学习各种前端插件、3D炫酷效果、图片展示、文字效果、以及整站模板 、大学生毕业HTML模板 、期末大作业模板 、等! 「在这里有好多 前端 开发者,一起探讨 前端 Node 知识,互相学习」!

3.

以上内容技术相关问题?欢迎一起交流学习???????


点击全文阅读


本文链接:http://zhangshiyu.com/post/100175.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1