20240309web前端_第三周作业_教务系统页面

2024-04-10 03:52

本文主要是介绍20240309web前端_第三周作业_教务系统页面,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

作业:教务系统页面

成果展示:

完整代码:

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>教务系统</title><style>.edu_top{display: flex;width: 1104px;height: 50px;margin-left: 250px;margin-top: 30px;margin-right: 360px;margin-bottom: 10px;color: #1069a4;font-size: 24px;           }.edu_top img{width: 50px;height: 50px;margin-right: 9px;}.font{align-items: center;padding-top: 7px;}.edu_mid{display: flex;width:1160px;height: 510px;background-color: #ededed79;float: left;margin-top: 30px;margin-left: 250px;border: 4px solid #ededed;margin-bottom: 20px;}.edu_mid img{width: 750px;height: 420px;}.edu_doc{margin-left: 20px;width: 380px;height: 500px;background-color:rgba(255, 255, 255, 0.913);}.userandpass img{width: 16px;height: 16px;}.userandpass{margin-left: 30px;margin-right: 25px;border-radius: 5px;}.bjdl img{width: 90px;height: 90px;}.cart:hover{transform: scale(1.1);}</style>
</head>
<body><div class = "edu_top" ><img src="../作业/img2/延安大学校徽2.png"><div class="font">延安大学教学管理信息服务平台</div></div><div class="edu_mid"><img src="../作业/img2/延安大学教务系统图片.png" alt=""><div class="edu_doc"><h5 style="margin-bottom: 20px; padding-left: 15px;">用户登录</h5><div class="userandpass"><table style="border-radius: 5px;border-color: rgb(164, 163, 163);background-color: rgb(255, 255, 255);"border="1px"><tr><td style="border: 0; width: 55px;"><div style="margin-right: 5px;padding: 4px 12px 4px 15px;border-right-style:groove; border-right-color: rgb(250, 248, 248);"><img src="../作业/img2/用户头像.png"></div></td><td style="border: 0;padding: 1px 3px 1px 3px;"><div class="cart"><input type="text" name="username" value="" placeholder="用户名"style="width: 250px; height: 20px;border-width: 0;background-color: rgb(255, 255, 255);"></div></td></tr></table><table style="border-radius: 5px;border-color: rgb(164, 163, 163);margin-top: 10px; background-color: rgb(255, 255, 255);"border="1px" ><tr><td style="border: 0; width: 55px;"><div style="margin-right: 5px;padding: 4px 12px 4px 15px;border-right-style:groove; border-right-color: rgb(250, 248, 248);"><img src="../作业/img2/密码图象.png"></div></td><td style="border: 0;padding: 1px 3px 1px 3px;"><div class="cart"><input type="password" name="password" value="" placeholder="密码"style="width: 250px; height: 20px;border-width: 0;background-color: rgb(255, 255, 255);"></div></td></tr></table><div  class="cart" style="font-size: small; color: #337ab7;margin-left: 250px; margin-top: 15px;"><p style="width: 80px;">忘记密码了?</p></div><form action="http://jwglxt.yau.edu.cn/jwglxt/xtgl/login_slogin.html" method="post"><button type="submit" style="background-color: #337ab7;color: #fff;border-radius: 5px;width: 325px;height: 30px;border: 0;"value="登录"  class="cart">登录</button></form><div style="color: #a94442;background-color: #f2dede;border-color: ebccd1;font-size: small;padding: 15px;margin-top: 10px;border-radius: 5px;">“圣地教务”公众号非任何学校官方公众号,请立即取消关注,谨防受骗或个人信息泄露<br>登录教务管理系统途径:<br>1.访问http://jwglxt.yau.edu.cn/jwglxt<br>2.登录学校网办大厅后选择教务系统登录<br></div><div class="bjdl" style="margin-top: 30px;"><img src="../作业/img2/登录二维码.png" alt="" style="float: left;margin-right: 10px;"><span style="color: #333;font-size: small;"><br>用手机扫一扫,<br>安全、便捷登录</span></div></div></div></div><div class="edu_end" style="text-align: center;color: #8099af;font: normal 12px microsoft YaHei;"><p style="display: inline-block;margin-top: 0px;">版权所有:延安大学教务处 电话:0911-2650133 传真:0911-2650131 电子信箱:ydjwc@yau.edu.cn 版本V8.3.14</p></div> 
</body>
</html>

解析:

主体框架使用快就元素 div 包裹,并且使用元素属性转换将块级元素转换成行内样式并保留其中穿插动画效果,起提示作用。

top部分:

首先是 edu_top部分

<div class = "edu_top" ><img src="../作业/img2/延安大学校徽2.png"><div class="font">延安大学教学管理信息服务平台</div></div>

在头head中使用<style>定义文档样式信息,即css(层叠式样式表),允许开发者在html文件中嵌入样式信息,以控制html元素的外观和布局。

        .edu_top{display: flex;width: 1104px;height: 50px;margin-left: 250px;margin-top: 30px;margin-right: 360px;margin-bottom: 10px;color: #1069a4;font-size: 24px;           }.edu_top img{width: 50px;height: 50px;margin-right: 9px;}

mid部分:

不断修改每个元素块之间的距离关系,并使用css渲染,使界面美观。

        .edu_mid{display: flex;width:1160px;height: 510px;background-color: #ededed79;float: left;margin-top: 30px;margin-left: 250px;border: 4px solid #ededed;margin-bottom: 20px;}.edu_mid img{width: 750px;height: 420px;}.edu_doc{margin-left: 20px;width: 380px;height: 500px;background-color:rgba(255, 255, 255, 0.913);}.userandpass img{width: 16px;height: 16px;}.userandpass{margin-left: 30px;margin-right: 25px;border-radius: 5px;}.bjdl img{width: 90px;height: 90px;}.cart:hover{transform: scale(1.1);}</style>
</head>
<body><div class = "edu_top" ><img src="../作业/img2/延安大学校徽2.png"><div class="font">延安大学教学管理信息服务平台</div></div><div class="edu_mid"><img src="../作业/img2/延安大学教务系统图片.png" alt=""><div class="edu_doc"><h5 style="margin-bottom: 20px; padding-left: 15px;">用户登录</h5><div class="userandpass"><table style="border-radius: 5px;border-color: rgb(164, 163, 163);background-color: rgb(255, 255, 255);"border="1px"><tr><td style="border: 0; width: 55px;"><div style="margin-right: 5px;padding: 4px 12px 4px 15px;border-right-style:groove; border-right-color: rgb(250, 248, 248);"><img src="../作业/img2/用户头像.png"></div></td><td style="border: 0;padding: 1px 3px 1px 3px;"><div class="cart"><input type="text" name="username" value="" placeholder="用户名"style="width: 250px; height: 20px;border-width: 0;background-color: rgb(255, 255, 255);"></div></td></tr></table><table style="border-radius: 5px;border-color: rgb(164, 163, 163);margin-top: 10px; background-color: rgb(255, 255, 255);"border="1px" ><tr><td style="border: 0; width: 55px;"><div style="margin-right: 5px;padding: 4px 12px 4px 15px;border-right-style:groove; border-right-color: rgb(250, 248, 248);"><img src="../作业/img2/密码图象.png"></div></td><td style="border: 0;padding: 1px 3px 1px 3px;"><div class="cart"><input type="password" name="password" value="" placeholder="密码"style="width: 250px; height: 20px;border-width: 0;background-color: rgb(255, 255, 255);"></div></td></tr></table><div  class="cart" style="font-size: small; color: #337ab7;margin-left: 250px; margin-top: 15px;"><p style="width: 80px;">忘记密码了?</p></div><form action="http://jwglxt.yau.edu.cn/jwglxt/xtgl/login_slogin.html" method="post"><button type="submit" style="background-color: #337ab7;color: #fff;border-radius: 5px;width: 325px;height: 30px;border: 0;"value="登录"  class="cart">登录</button></form><div style="color: #a94442;background-color: #f2dede;border-color: ebccd1;font-size: small;padding: 15px;margin-top: 10px;border-radius: 5px;">“圣地教务”公众号非任何学校官方公众号,请立即取消关注,谨防受骗或个人信息泄露<br>登录教务管理系统途径:<br>1.访问http://jwglxt.yau.edu.cn/jwglxt<br>2.登录学校网办大厅后选择教务系统登录<br></div><div class="bjdl" style="margin-top: 30px;"><img src="../作业/img2/登录二维码.png" alt="" style="float: left;margin-right: 10px;"><span style="color: #333;font-size: small;"><br>用手机扫一扫,<br>安全、便捷登录</span></div></div></div></div><div class="edu_end" style="text-align: center;color: #8099af;font: normal 12px microsoft YaHei;"><p style="display: inline-block;margin-top: 0px;">版权所有:延安大学教务处 电话:0911-2650133 传真:0911-2650131 电子信箱:ydjwc@yau.edu.cn 版本V8.3.14</p></div> 

代码部分不断穿插各级元素的使用,调整小块元素的大小和布局

动画部分:缩放:

        .cart:hover{transform: scale(1.1);}<div class="cart"><input type="text" name="username" value="" placeholder="用户名"style="width: 250px; height: 20px;border-width: 0;background-color: rgb(255, 255, 255);"></div><div class="cart"><input type="password" name="password" value="" placeholder="密码"style="width: 250px; height: 20px;border-width: 0;background-color: rgb(255, 255, 255);"></div><div  class="cart" style="font-size: small; color: #337ab7;margin-left: 250px; margin-top: 15px;"><p style="width: 80px;">忘记密码了?</p></div><form action="http://jwglxt.yau.edu.cn/jwglxt/xtgl/login_slogin.html" method="post"><button type="submit" style="background-color: #337ab7;color: #fff;border-radius: 5px;width: 325px;height: 30px;border: 0;"value="登录"  class="cart">登录</button></form>

 

分别对当光标移至用户名块,密码块,忘记密码字和登录块时实现放大1.1倍的提示效果。 

end部分:

    <div class="edu_end" style="text-align: center;color: #8099af;font: normal 12px microsoft YaHei;"><p style="display: inline-block;margin-top: 0px;">版权所有:延安大学教务处 电话:0911-2650133 传真:0911-2650131 电子信箱:ydjwc@yau.edu.cn 版本V8.3.14</p></div>

直接在块级元素内使用style,使前期修改简单,适合调整界面。

这篇关于20240309web前端_第三周作业_教务系统页面的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/890001

相关文章

Vue3 的 shallowRef 和 shallowReactive:优化性能

大家对 Vue3 的 ref 和 reactive 都很熟悉,那么对 shallowRef 和 shallowReactive 是否了解呢? 在编程和数据结构中,“shallow”(浅层)通常指对数据结构的最外层进行操作,而不递归地处理其内部或嵌套的数据。这种处理方式关注的是数据结构的第一层属性或元素,而忽略更深层次的嵌套内容。 1. 浅层与深层的对比 1.1 浅层(Shallow) 定义

不懂推荐算法也能设计推荐系统

本文以商业化应用推荐为例,告诉我们不懂推荐算法的产品,也能从产品侧出发, 设计出一款不错的推荐系统。 相信很多新手产品,看到算法二字,多是懵圈的。 什么排序算法、最短路径等都是相对传统的算法(注:传统是指科班出身的产品都会接触过)。但对于推荐算法,多数产品对着网上搜到的资源,都会无从下手。特别当某些推荐算法 和 “AI”扯上关系后,更是加大了理解的难度。 但,不了解推荐算法,就无法做推荐系

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

基于人工智能的图像分类系统

目录 引言项目背景环境准备 硬件要求软件安装与配置系统设计 系统架构关键技术代码示例 数据预处理模型训练模型预测应用场景结论 1. 引言 图像分类是计算机视觉中的一个重要任务,目标是自动识别图像中的对象类别。通过卷积神经网络(CNN)等深度学习技术,我们可以构建高效的图像分类系统,广泛应用于自动驾驶、医疗影像诊断、监控分析等领域。本文将介绍如何构建一个基于人工智能的图像分类系统,包括环境

水位雨量在线监测系统概述及应用介绍

在当今社会,随着科技的飞速发展,各种智能监测系统已成为保障公共安全、促进资源管理和环境保护的重要工具。其中,水位雨量在线监测系统作为自然灾害预警、水资源管理及水利工程运行的关键技术,其重要性不言而喻。 一、水位雨量在线监测系统的基本原理 水位雨量在线监测系统主要由数据采集单元、数据传输网络、数据处理中心及用户终端四大部分构成,形成了一个完整的闭环系统。 数据采集单元:这是系统的“眼睛”,

【 html+css 绚丽Loading 】000046 三才归元阵

前言:哈喽,大家好,今天给大家分享html+css 绚丽Loading!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕 目录 📚一、效果📚二、信息💡1.简介:💡2.外观描述:💡3.使用方式:💡4.战斗方式:💡5.提升:💡6.传说: 📚三、源代码,上代码,可以直接复制使用🎥效果🗂️目录✍️

作业提交过程之HDFSMapReduce

作业提交全过程详解 (1)作业提交 第1步:Client调用job.waitForCompletion方法,向整个集群提交MapReduce作业。 第2步:Client向RM申请一个作业id。 第3步:RM给Client返回该job资源的提交路径和作业id。 第4步:Client提交jar包、切片信息和配置文件到指定的资源提交路径。 第5步:Client提交完资源后,向RM申请运行MrAp

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

嵌入式QT开发:构建高效智能的嵌入式系统

摘要: 本文深入探讨了嵌入式 QT 相关的各个方面。从 QT 框架的基础架构和核心概念出发,详细阐述了其在嵌入式环境中的优势与特点。文中分析了嵌入式 QT 的开发环境搭建过程,包括交叉编译工具链的配置等关键步骤。进一步探讨了嵌入式 QT 的界面设计与开发,涵盖了从基本控件的使用到复杂界面布局的构建。同时也深入研究了信号与槽机制在嵌入式系统中的应用,以及嵌入式 QT 与硬件设备的交互,包括输入输出设

JAVA智听未来一站式有声阅读平台听书系统小程序源码

智听未来,一站式有声阅读平台听书系统 🌟&nbsp;开篇:遇见未来,从“智听”开始 在这个快节奏的时代,你是否渴望在忙碌的间隙,找到一片属于自己的宁静角落?是否梦想着能随时随地,沉浸在知识的海洋,或是故事的奇幻世界里?今天,就让我带你一起探索“智听未来”——这一站式有声阅读平台听书系统,它正悄悄改变着我们的阅读方式,让未来触手可及! 📚&nbsp;第一站:海量资源,应有尽有 走进“智听