首页 > 其他分享 >30.绝地求生吃鸡游戏网页 Web前端网页制作 大学生期末大作业 html5+css3

30.绝地求生吃鸡游戏网页 Web前端网页制作 大学生期末大作业 html5+css3

时间:2025-01-11 22:58:17浏览次数:3  
标签:css3 Web 网页 color height width background font margin

目录

一、前言

二、网页文件

三、网页效果

四、代码展示

1.HTML

2.CSS

五、更多推荐


一、前言

本实例以游戏绝地求生为主题设计,应用html5+css,包括DIV布局、点击事件、超链接、留言板等,供大家参考。【本网页支持如Dreamweaver、HBuilder、Text 、Vscode 等任意html编辑软件进行编辑修改;支持包括IE、Firefox、Chrome、Safari主流浏览器浏览。


二、网页文件


三、网页效果

以下为网页正文(节选示例):


四、代码展示

1.HTML

代码如下(节选示例):

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>游戏</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<div id="header">
  <div class="wrapper clearfix">
    <div id="logo"> <a href="index.html"><img src="images/logo.png" alt="LOGO" width="120"></a> </div>
    <ul id="navigation">
      <li class="selected"> <a href="index.html">首页</a> </li>
      <li> <a href="about.html">介绍</a> </li>
      <li> <a href="blog.html">资讯</a> </li>
      <li> <a href="gallery.html">图片</a> </li>
      <li> <a href="contact.html">联系作者</a> </li> |
    </ul>
  </div>
</div>
<div id="contents">
  <div id="adbox">
    <div class="wrapper clearfix">
      <div class="info"> </div>
    </div>
   
  </div>
  <div class="body clearfix">
    <div class="">
      <p>吃鸡即大吉大利,晚上吃鸡简称,网络流行词,该词最早来源于电影《决胜21点》,随后在游戏《绝地求生:大逃杀》而火遍网络,当你获得第一名的时候就会有一段台词出现:“大吉大利,晚上吃鸡”,所以,“吃鸡”即指玩家在《绝地求生:大逃杀》等逃杀类游戏中取得第一。</p>
     
    </div>
  </div>
</div>
<div id="footer">
  <ul id="featured" class="wrapper clearfix">
    <li> <img src="images/astronaut.jpg" alt="Img" height="204" width="220">
      <h3><a href="blog.html">游戏截图</a></h3>
    
    </li>
    <li> <img src="images/earth.jpg" alt="Img" height="204" width="220">
      <h3><a href="blog.html">游戏截图</a></h3>

    </li>
    <li> <img src="images/spacecraft-small.jpg" alt="Img" height="204" width="220">
      <h3><a href="blog.html">游戏截图</a></h3>
    </li>
    <li> <img src="images/space-shuttle.jpg" alt="Img" height="204" width="220">
      <h3><a href="blog.html">游戏截图</a></h3>
    </li>
  </ul>
  <div class="body">
    <p >版权所有</p>
  </div>
</div>
</body>
</html>

......

2.CSS

代码如下(节选示例):

@font-face {
    font-family: 'PTSerif-Caption';
    src: url('../fonts/PT_Serif-Caption-Web-Regular.eot');
    src: local('☺'), url('../fonts/PT_Serif-Caption-Web-Regular.woff') format('woff'), url('../fonts/PT_Serif-Caption-Web-Regular.ttf') format('truetype'), url('../fonts/PT_Serif-Caption-Web-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
body {
    background: url(../images/bg-body.jpg) repeat left top;
    font-family: Arial, Helvetica, sans-serif;
    min-width: 960px;
    margin: 0;
}
img {
    border: 0;
}
.wrapper {
    width: 960px;
    margin: 0 auto;
}
.clearfix:after {
    clear:both;
    content:"";
    display:block;
    height:1%;
    line-height:0;
    visibility:hidden;
}
/*------------------------------ HEADER ------------------------------*/
.btn1, .btn2, .btn3, #newsletter input {
    background: url(../images/interface.png) no-repeat;
}
.btn1, .btn2, .btn3 {
    color: #fdfdfd;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    text-shadow: -3px 0 3px #053131;
    text-transform: uppercase;
}
.btn1 {
    background-position: 0 0;
    height: 34px;
    line-height: 34px;
    width: 202px;
    padding: 0 3px 9px;
}
.btn2 {
    background-position: 0 -53px;
    height: 37px;
    line-height: 37px;
    width: 216px;
    padding: 0 3px 8px;
}
.btn3 {
    background-position: 0 -108px;
    font: 22px/49px Georgia, "Times New Roman", Times, serif;
    height: 49px;
    width: 222px;
}
.btn1:hover {
    background-position: -222px 0;
}
.btn2:hover {
    background-position: -232px -53px;
}
.btn3:hover {
    background-position: -232px -108px;
}
/*------------------------------ HEADER ------------------------------*/
#header {
    background: url(../images/bg-header.png) repeat-x center top;
    height: 50px;
    padding: 16px 0 0;
    text-align: right;
}
/** Logo **/
#logo {
    float: left;
    display: inline-block;
    margin-left: 10px;
}
/** Navigation **/
#navigation {
    display: inline-block;
    height: 30px;
    list-style: none;
    margin: 0 10px;
    padding: 0;
*width: 516px; /** Needed for IE7 **/
}
#navigation li {
    float: left;
    margin: 0 30px;
}
#navigation li:first-child {
    margin-left: 0;
}
#navigation li a {
    color: #efefef;
    line-height: 30px;
    padding: 0;
    text-decoration: none;
}
#navigation li a:hover, #navigation li.selected a {
    color: #44b2f1;
}
/*------------------------------ CONTENTS ------------------------------*/
#contents {
    background: url(../images/bg-content.png) repeat-x center top;
    margin: 0 0 24px;
    padding: 56px 0 0;
}
#contents h1, #featured h3 {
    color: #fbfdfd;
    font: italic 34px Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    margin: 0 0 18px;
}
#contents p {
    color: #e8eff4;
    font-size: 14px;
    line-height: 24px;
    margin: 0;
    padding: 0 0 30px;
    text-align: justify;
}
#contents p a {
    color: #e8eff4;
}
#contents p a:hover {
    color: #0aa3fa;
}
#contents p b {
    display: block;
}
#contents .body {
    width: 940px;
    margin: 0 auto;
    padding: 0 10px;
}
#contents .click-here {
    float: right;
    background: url(../images/spacecraft.jpg) no-repeat center top;
    display: inline-block;
    height: 162px;
    width: 301px;
    margin-left: 20px;
    text-align: center;
}
#contents .click-here h1 {
    color: #addcfe;
    font-style: italic;
    line-height: 36px;
    margin: 18px 0;
}
/** adbox **/
#adbox {
    background: #020a13 url(../images/bg-adbox.jpg) no-repeat center top;
    font-family: Georgia, "Times New Roman", Times, serif;
    min-height: 433px;
    margin: -56px 0 22px;
/** Needed for IE7 **/
*margin: 0;
*position: relative;
*top: -56px;
}
#adbox .wrapper {
    width: 940px;
    padding: 54px 10px 26px;
}
#adbox .info {
    height: 354px;
    width: 330px;
    overflow: hidden;
}
#adbox h1 {
    color: #ffffff;
    font-size: 48px;
    font-style: italic;
    line-height: 50px;
    margin-bottom: 30px;
}
#adbox p {
    color: #176eb0;
    font-size: 14px;
    line-height: 24px;
}
#adbox p a {
    color: #176eb0;
}
#adbox div.highlight {
    background: #171a1a url(../images/adbox-bg-heading.jpg) repeat-x left top;
    min-height: 82px;
    border-color: #000;
    border-style: solid none;
    border-width: 1px;
}
#adbox div.highlight h2 {
    color: #484b4b;
    font-size: 34px;
    line-height: 82px;
    width: 940px;
    margin: 0 auto;
    padding: 0 10px;
    text-shadow: -3px 0 3px #121413;
}
#adbox div.highlight h2 i {
    font-weight: normal;
}
/** main **/
.main {
    padding: 0 10px;
}
/** sidebar **/
#sidebar {
    float: right;
    width: 220px;
    margin: 0 10px 0 80px;
}

  ......


五、更多推荐

您的支持是我创作的动力!关注作者,点赞收藏博文,获取更多源码,3Q!

Web前端网页制作、网页完整代码、大学生期末大作业模板案例、技术交流等,有兴趣的联系我交流学习!更多优质博客文章、网页模板点击以下链接查阅:仙女网页设计-CSDN博客

标签:css3,Web,网页,color,height,width,background,font,margin
From: https://blog.csdn.net/d321654987123/article/details/144973659

相关文章

  • SpringBoot基于Javaweb的二手儿童绘本交易系统的设计与实现
    1.引言在当今的软件开发领域,企业级应用的开发和部署速度直接影响着业务的竞争力。SpringBoot以其轻量级、快速启动和强大的集成能力,成为构建现代企业级应用的首选框架。本文将带您深入了解SpringBoot框架的核心特性,并展示如何利用它构建一个高效、可扩展的系统。2.开发......
  • html css网页制作成品——HTML+CSS+js绝味鸭脖网页设计(5页)附源码
      目录   一、......
  • html+css编程学习网站网页设计与制作5页
    一、......
  • 理解网页设计中的宽度(Width)和高度(Height)
    理解网页设计中的宽度(Width)和高度(Height)在网页设计和开发中,宽度(Width)和高度(Height)是两个非常基础但又至关重要的概念。无论是图片、按钮、文本框,还是整个页面的布局,都离不开对宽度和高度的设置。本文将从基础概念出发,结合实际应用场景,帮助你更好地理解这两个属性。1.什么是宽......
  • node.js基于web的社区管理系统程序+论文 可用于毕业设计
    本系统(程序+源码+数据库+调试部署+开发环境)带文档lw万字以上,文末可获取源码系统程序文件列表开题报告内容一、选题背景关于社区管理系统的研究,现有研究主要以传统的管理模式或特定功能的社区管理为主,专门针对将用户、缴费通知、缴费信息、闲置物品、互帮互助等功能整合在......
  • playwright 获取网页验证码图片
    一、编写代码usingMicrosoft.Playwright;namespaceTestProject3{[TestClass]publicclassUnitTest1:PageTest{[TestMethod]publicasyncTaskHomepageHasPlaywrightInTitleAndGetStartedLinkLinkingtoTheIntroPage(){......
  • 【web安全】面向Web安全防护的蜜罐技术研究
    摘要传统Web安全防护技术存在误报、漏报以及防御被动等问题,蜜罐技术的引入可有效改善此状况。本文针对面向Web安全防护的蜜罐技术进行研究,分析当前主流的Web蜜罐技术,提出蜜罐技术在Web安全防护中的应用模型,并进行了研究展望。一、引言随着Web2.0的发展,越来越多的公司、政府、......
  • [大模型]本地离线运行openwebui+ollama容器化部署
    本地离线运行Openweb-uiollama容器化部署说明安装internet操作内网操作问题线程启动错误最终命令总结说明最近公司有一个在内网部署一个离线大模型的需求,网络是离线状态,服务器有A100GPU,一开始是想折腾开源chatGML4大模型,因为使用过gml3,所以想着部......
  • uniapp(vue3) -实现横向滚动选择日期组件,手势左右滑动选择日期,类似电影选票日期Tabs选
    效果图在uni-app手机h5网页网站/支付宝微信小程序/安卓app/苹果app/nvue等(全平台兼容)开发中,实现uniapp日历横向日期选择器可滑动可点击,自定义横向滑动选择日期周几,获取日历并列出当前月前几个月的日期,用户手势横向滑动日历选择器插件,支持自定义任意样式、自定义展示的日......
  • uniapp - 实现精美全屏抽屉弹窗带动画过渡功能组件,从页面左侧或右侧弹出抽屉窗口带挤
    效果图在uni-app手机h5网页网站/支付宝微信小程序/安卓app/苹果app/nvue等(全平台兼容)开发中,实现uniapp抽屉弹框组件,从页面全屏侧滑弹出抽屉窗口,简单易用的Drawer抽屉插件,uniApp抽屉组件好看弹跳挤压出现动画过渡效果,适用于侧边隐藏时导航菜单、我的个人信息等场景,自定义......