学校管网的仿写

news2024/11/19 19:30:57

工字形布局完成

效果
在这里插入图片描述

代码部分

在这里插入代码片
```<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>西安工业大学官网首页</title>
    <link rel="stylesheet" href="css/reset.css">
    <link rel="stylesheet" href="css/index.css">
</head>
<style>
    header {
    height: 653px;
    
}
.logo {
    height: 150px;
    background-color: #0a437e;
}
.log-box {
    width: 1300px;
    height: 150px;
    margin: auto;
    
}
.log-box > img {
    margin-top: 37px;
}
.logo-right {
    width: 400px;
    height: 150px;
    
    float: right;
}


header > nav {
    border-top: 1px solid #426c98;
    height: 50px;
    background-color: #0a437e;
}
.banner, .banner > img{
    height: 450px;
    width: 100%;
}


section {
    height: 1800px;
}

footer {
    height: 450px;
    background-color: #0a437e;
}
.search-container {
    border: 1px solid grey;
    position: relative;
    display: inline-block;
    width: 300px; /* 调整搜索框的宽度 */
    height: 40px; /* 设置搜索框的高度 */
    border-radius: 4px; /* 可选:添加边框圆角 */
    overflow: hidden;
  }

  .search-box {
    
    width: calc(100% - 40px); /* 让搜索框充满容器,减去图标的宽度 */
    height: 100%; /* 让搜索框充满容器 */
    padding-right: 40px; /* 留出空间放置放大镜图标 */
    
    
    border-radius: 5px; /* 可选:添加边框圆角 */
    background-color: #0a437e; /* 蓝色背景 */
    color: rgb(246, 242, 242); /* 设置文本颜色为黑色 */
    line-height: 40px; /* 文字垂直居中 */
  }

  .search-icon {
    position: absolute;
    right: 0; /* 将图标放置在搜索框的最右侧 */
    top: 0;
    height: 100%; /* 图标的高度与搜索框相同 */
    width: 40px; /* 图标的宽度 */
    background-color:  #7e0a21; /* 与搜索框背景相同 */
    color: black; /* 设置图标颜色为白色 */
    text-align: center; /* 让图标居中 */
    line-height: 40px; /* 让图标内的内容垂直居中 */
  }
  .lr{
    
    height: 50px;
    color: white;
    line-height: 35px;
  }

  .container {
    display: flex;
    margin: -1px; /* 取消默认边距,使子元素之间没有空隙 */
    
    justify-content: center;
    margin-left: 133px;
    width: 1200px;
  }

  .item {
   
    width: calc(100% / 7); /* 计算每个子元素的宽度 */
    box-sizing: border-box; /* 设置盒子模型为边框盒模型,确保边框宽度不会撑大盒子 */
    padding: 10px; /* 设置内边距 */
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    color: white;
    cursor: pointer; /* 设置鼠标样式为手型 */
  }
   /* 下拉菜单样式 */
  .dropdown-content {
    display: none; /* 默认隐藏 */
    position: absolute; /* 绝对定位 */
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%; /* 下拉菜单相对于父元素底部定位 */
    left: 0; /* 下拉菜单左对齐 */
    margin-top: 5px; /* 增加一些间距,避免遮挡 */
  }
   /* 鼠标悬停时显示下拉菜单 */
   .item:hover .dropdown-content {
    display: block;
  }

  /* 下拉菜单项样式 */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  /* 下拉菜单项悬停样式 */
  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  .sbox{
    margin: 0;
    display: inline-block;
    margin-left: 100px;
    width: 300px;
    
    height: 320px;
  }
  .sbox1{
    margin: 0;
    display: inline-block;  
    width: 300px;
   
    height: 320px;
  }
  .title1{
    margin-left: 100px;
    width: 1300px;
    
    font-size: 30px;
  }
  .text1{
    font-weight: bold; /* 设置字体加粗 */
    color: blue; /* 设置字体颜色为蓝色 */
  }
  .text2{
    opacity: 0.5; /* 设置字体透明度为50% */
  }
  .ul{
    max-width: 100%;
    height: auto;
  }
  .sbox2{
    
    display: inline-block;
    width: 750px;
    height: 320px;

  }
</style>
</style>
<body>
    <header>
        <div class="logo">
            <div class="log-box">
                <img src="img/logo.png" alt="">
                <div class="logo-right">
                    <div class="lr" >
                        学校邮箱 信息门户 信息公开 ENGLSH
                    </div>
                    
                    <div class="search-container">
                        <input type="text" placeholder="请输入关键字" class="search-box">
                        <div class="search-icon">
                            <i class="fas fa-search"></i>
                            <img src="img/发大镜2.png" alt="">
                        </div>
                      </div>
                </div>
            </div>
            
        </div>
        <nav>
            <div class="container">
                <div class="item">
                    学校概况
                    <div class="dropdown-content">
                      <a href="#">Option 1</a>
                      <a href="#">Option 2</a>
                      <a href="#">Option 3</a>
                    </div>
                </div>
                <div class="item">
                    机构设置
                    <div class="dropdown-content">
                      <a href="#">Option 1</a>
                      <a href="#">Option 2</a>
                      <a href="#">Option 3</a>
                    </div>
                </div>
                <div class="item">
                    师资队伍
                    <div class="dropdown-content">
                      <a href="#">Option 1</a>
                      <a href="#">Option 2</a>
                      <a href="#">Option 3</a>
                    </div>
                </div>
                <div class="item">
                    教育科研
                    <div class="dropdown-content">
                      <a href="#">Option 1</a>
                      <a href="#">Option 2</a>
                      <a href="#">Option 3</a>
                    </div>
                </div>
                <div class="item">
                    招生就业
                    <div class="dropdown-content">
                      <a href="#">Option 1</a>
                      <a href="#">Option 2</a>
                      <a href="#">Option 3</a>
                    </div>
                </div>
                <div class="item">
                    对外交流
                    <div class="dropdown-content">
                      <a href="#">Option 1</a>
                      <a href="#">Option 2</a>
                      <a href="#">Option 3</a>
                    </div>
                </div>
                <div class="item">
                    图书馆
                    <div class="dropdown-content">
                      <a href="#">Option 1</a>
                      <a href="#">Option 2</a>
                      <a href="#">Option 3</a>
                    </div>
                </div>
            
                
          </nav>
        <div class="banner">
            <img src="img/banner1.jpg" alt="">
        </div>
    </header>
    <section>
        <div class="title1">
            西工要闻
        </div>
        <div class="sbox">
            <div>
                <img src="img/s1.png" alt="">
            </div>
            <div class="text1">陕西省委军民融合办尹清辽一行莅临我校调研交流</div>
            <div class="text2"><p>4月16日,陕西省委军民融合办尹清辽一行莅临我校参...</p></div>
            <div class="text2">2024-04-17</div>
        </div>
        
        </div>
        <div class="sbox1">
            <div>
                <img src="img/s2.png" alt="">
            </div>
            <div class="text1">陕西省委军民融合办尹清辽一行莅临我校调研交流</div>
            <div class="text2"><p>4月16日,陕西省委军民融合办尹清辽一行莅临我校参...</p></div>
            <div class="text2">2024-04-14</div>
        </div>
        <div class="sbox2">
            <div >
                <img src="img/ul2.png" alt="" class="ul">
            </div>
        </div>
            
            
      
       
    </section>
    <footer>

    </footer>
</body>
</html>


本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1610019.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

AI日报:最强大模型Llama 3发布;Midjourney推社交新功能Room;超强AI视频自动剪辑工具Captions;手机上可以玩大模型了

新鲜AI产品点击了解&#xff1a;https://top.aibase.com/ 1、最强大模型Llama3 正式发布 已达GPT4 级别 Llama3是Meta公司最新发布的开源模型&#xff0c;拥有80亿和700亿参数规模&#xff0c;预计7月正式发布。该模型具备多模态能力&#xff0c;集成了新的计算机编码功能&am…

C++类和对象(中)(2)

一、拷贝构造函数 1.1 拷贝构造函数的概念 在现实生活中我们对于两个一模一样的人我们将他们称之为双胞胎&#xff0c;那么我们在创建对象的时候&#xff0c;能不能创建一个和已经存在的对象一模一样的新对象呢&#xff1f;这种做法是可以的&#xff0c;通过拷贝构造函数我们…

Docker镜像的使用与操作

1、什么是镜像 Docker镜像是用于创建容器的只读模板&#xff0c;它包含文件系统。一个Docker镜像可以包括一个应用程序以及能够运行它的基本操作系统环境。 镜像是创建容器的基础&#xff0c;通过版本管理和联合文件系统&#xff0c;Docker提供了一套十分简单的机制来创建镜像…

二叉检索树的查找删除(替换删除)的实现

1、查找元素 当当前结点元素key小于要查找的元素的key时,该元素一定在当前结点的右子树中&#xff0c;以此递归的进行search()&#xff0c;直到key相等。反之亦然 2、查找最小元素 最小元素一定在根结点的左子树中&#xff08;在左子树递归&#xff09; 基准情形&#xff1…

Llama3本地部署实现模型对话

1. 从github下载目录文件 https://github.com/meta-llama/llama3 使用git下载或者直接从github项目地址下载压缩包文件 git clone https://github.com/meta-llama/llama3.git2.申请模型下载链接 到Meta Llama website填写表格申请,国家貌似得填写外国,组织随便填写即可 3.…

中医方解笔记

目录 大青龙汤小青龙汤金匮肾气丸逍遥丸君臣佐参考《方剂学》 加味逍遥丸&#xff08;丹栀逍遥丸&#xff09;使用情况组成丹栀逍遥丸为什么可以缓解口干&#xff1f; 补中益气丸 大青龙汤 小青龙汤 金匮肾气丸 逍遥丸 君 柴胡。疏肝解郁&#xff0c;使肝郁得以条达。 臣 当…

Java高级阶段面试题库(Redis数据库、MQ消息队列、kafka、SpringBoot + SpringCloud、MySQL、JVMJUC、其它)

文章目录 1. Redis数据库篇(忽略)1.1 简单介绍一下redis1.2 单线程的redis为什么读写速度快?1.3 redis为什么是单线程的?1.4 redis服务器的的内存是多大?1.5 为什么Redis的操作是原子性的&#xff0c;怎么保证原子性的&#xff1f;1.6 你还用过其他的缓存吗&#xff1f;这些…

STM32 USB HID报告描述符没有报告长度

STM32 USB HID设置(STM32CubeMX)_我也想成大侠的博客-CSDN博客 不影响鼠标功能

Golang内存、指针逃逸、垃圾回收机制概览

最近看到了一篇文章是关于go的内存、指针逃逸和垃圾回收机制的&#xff0c;发现自己并未很细致的了解过这方面的内容&#xff0c;于是在翻阅各种文章的情况下&#xff0c;写出了这篇总结&#xff0c;参考文章放在文末&#xff0c;可自取 内存 Go 语言使用一个自带的垃圾收集器…

密码学 | 椭圆曲线密码学 ECC 入门(四)

目录 正文 1 曲线方程 2 点的运算 3 求解过程 4 补充&#xff1a;有限域 ⚠️ 知乎&#xff1a;【密码专栏】动手计算双线性对&#xff08;中&#xff09; - 知乎 ⚠️ 写在前面&#xff1a;本文属搬运博客&#xff0c;自己留着学习。注意&#xff0c;这篇博客与前三…

qt设置TextEdit的提示性文字

提示性文字&#xff0c;就是用户在输入的时候自动消失的那种 比如&#xff1a; 可以这样设置&#xff1a; lineEdit->setPlaceholderText("我是提示性文字"); 但是我们觉的这样有点难看&#xff0c;可以用以下QSS来调整&#xff1a; 调整提示性文字的位置&…

Spring Boot集成fastdfs快速入门Demo

1.什么是fastdfs FastDFS 是一个开源的高性能分布式文件系统&#xff08;DFS&#xff09;。它的主要功能包括&#xff1a;文件存储&#xff0c;文件同步和文件访问&#xff0c;以及高容量和负载平衡。主要解决了海量数据存储问题&#xff0c;特别适合以中小文件&#xff08;建议…

【吊打面试官系列】Java高并发篇 - notify()和 notifyAll()有什么区别?

大家好&#xff0c;我是锋哥。今天分享关于 【notify()和 notifyAll()有什么区别&#xff1f;】面试题&#xff0c;希望对大家有帮助&#xff1b; notify()和 notifyAll()有什么区别&#xff1f; 当一个线程进入 wait 之后&#xff0c;就必须等其他线程 notify/notifyall,使用 …

Java web应用性能分析之服务端慢和优化概叙

前面已经分析了客户端慢、前端页面慢、入口Nginx慢&#xff0c;按照上图接下来就是我们服务端重点的接口慢分析优化、服务器资源性能瓶颈分析、服务器带宽性能瓶颈分析。 性能优化的目的 性能优化的目标是提高应用的性能&#xff0c;使其更加高效、稳定和可靠。性能优化包括服…

短视频流媒体平台的系统设计

1. 功能需求: 我们的系统有两类参与者 内容创作者 •上传任何类型的视频&#xff08;格式编解码器&#xff09;•视频可以被删除•视频元数据•必填项: 标题&#xff0c;作者&#xff0c;描述•选填项: 分类/标签列表•可以随时更新•当视频对观众可用时&#xff0c;向内容创作…

六边形酷科技特效单页源码

源码介绍 基于canvas画布绘制多个六边形追踪鼠标&#xff0c;科技感的几何图形酷炫动画特效&#xff0c; 单页html源码&#xff0c;可以做网站动态背景&#xff0c;喜欢的朋友可以拿去 效果截图 完整源码 <!doctype html> <html> <head> <meta charset…

IntelliJ-platform plugIn 插件开发专题内容介绍,学习指导(一)

这系列文章出炉对于笔者来说确实不容易&#xff0c;历时快两年了&#xff0c;先后迭代了3版本&#xff0c;暂时与官方最新版本API同步&#xff08;2024.03&#xff09;&#xff0c;文章内容覆盖2022~2024版内容 专题由来 最早接触插件开发是源于公司一个国际化项目&#xff0c…

Ubuntu 22.04.4安装Docker引擎

正文共&#xff1a;1024 字 13 图&#xff0c;预估阅读时间&#xff1a;1 分钟 我们前面安装了几次Ubuntu的操作系统&#xff08;Ubuntu 23.10通过APT安装Open vSwitch&#xff09;&#xff0c;在开始之前&#xff0c;我还是简单提醒一下&#xff0c;从Ubuntu下载页面&#xff…

python:元组,字符串,切片

一、元组# 列表可以修改内容&#xff0c;元组可以不被修改 # 在程序内封装数据&#xff0c;不希望数据被篡改&#xff0c;所以使用元组 # 语法&#xff1a; 不限制类型 # 定于元组的字面量&#xff1a; &#xff08;元素&#xff0c;元素&#xff0c;元素.....&#xff09; # 定…

【人工智能基础】状态空间搜索

状态空间法 状态空间&#xff1a;一个问题全部可能的状态以及其关系的集合。 状态空间图&#xff1a;以图的形式表示问题的状态空间&#xff0c;节点对应状态&#xff0c;边对应状态转移算子&#xff0c;边上的权对应转移所需的代价 问题的解&#xff1a;是从最开始状态到目…