通过HTML和CSS1:1还原风暴英雄官方网站
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>《风暴英雄》官方网站_暴雪出品 明星汇聚 MOBA竞技新篇章</title>
<link rel="shortcut icon" href="heroes.ico" type="image/x-icon">
<link rel="stylesheet" href="font/iconfont.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/index.css">
</head>
<body> <div class="header">
<div class="headerTop">
</div>
<ul>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
</ul>
<div class="logo">
<img src="data:images/logo.png" alt="">
</div>
<a href="#"></a>
</div>
<div class="main">
<div class="slogn"></div>
<ul class="eyeList">
<li class="eyeItem">
<!--<img src="data:images/borde1.png" alt="">-->
<a href="#"><img src="data:images/eye1.jpg" alt=""></a>
<h3>颠覆传统 MOBA 2.0</h3>
</li>
<li class="eyeItem">
<!--<img src="data:images/borde1.png" alt="">-->
<a href="#"><img src="data:images/eye2.jpg" alt=""></a>
<h3>赛季性枢纽异变:经验球</h3>
</li>
<li class="eyeItem">
<!--<img src="data:images/borde1.png" alt="">-->
<a href="#"><img src="data:images/eye3.jpg" alt=""></a>
<h3>2020暴雪打折季</h3>
</li>
</ul>
</div>
<div class="footer">
<div class="footer_in">
<div class="footer_top clearfix">
<div class="fl">
<a href="#">
<i></i>
在线客服
</a>
<a href="#">
<i></i>
反馈
</a>
<a href="#">
<i></i>
加入我们
</a>
</div>
<div class="fr">
<span>合作品牌</span>
<i></i>
<b class="iconfont icon-jiahao"></b>
<span>|</span>
<b class="iconfont icon-sanjiaodown"></b>
</div>
</div>
<div class="footer_middle clearfix">
<div class="fl middle_left">
<img src="data:images/blizzard.png" alt="">
<img src="data:images/163.png" alt="">
</div>
<div class="rl middle_right">
<p>
<a href="#">隐私</a>
<span>|</span>
<a href="#">法律条款</a>
<span>|</span>
<a href="#">API</a>
</p>
<div>
<p>©2019 暴雪娱乐有限公司版权所有 由上海网之易网络科技发展有限公司运营 著作权侵权 | 新广出审[2014]1356号</p>
<p>
<a href="#">文网进字[2014]0115号</a> |
<a href="#">沪网文号〔2017〕9633-727号</a> |
<a href="#">增值电信业务经营许可证编号:沪B2-20080012</a>
</p>
<p>互联网违法和不良信息举报电话:0571-28090163 沪公网安备 31011502022167号 |
<a href="#">上海市网络游戏行业自律公约</a>
</p>
<p>
<img src="data:images/footer1.png" alt="">
<img src="data:images/footer2.png" alt="">
<img src="data:images/footer3.png" alt="">
<img src="data:images/footer4.png" alt="">
<img src="data:images/footer5.png" alt="">
<span>|</span>适龄提示:适合13岁及以上使用 <a href="#">家长监护工程></a>
</p>
</div> <div class="bottom"></div>
</div>
</div>
<div class="footer_bottom">
<p>积极健康的游戏心态是健康游戏的开端,本游戏故事情节设置紧凑,请您合理控制游戏时间,避免沉溺游戏影响生活,注意自我保护,防范网络陷阱。</p>
<p>健康游戏忠告:抵制不良游戏,拒绝盗版游戏。注意自我保护,谨防受骗上当。适度游戏益脑,沉迷游戏伤身。合理安排时间,享受健康生活。</p>
</div>
</div>
</div>
<video autoplay loop muted poster="images/bg.jpg">
<source src="data:images/bg.mp4" type="video/mp4">
<source src="data:images/bg.webm" type="video/webm">
</video>
</body>
</html>
/*CSS代码*/
/*背景开始*/
video{
width: 100%;
height: 1080px;
object-fit: cover;
position: absolute;
top:;
left:;
z-index:;
}
/*背景结束*/
/*头部开始*/
.header>.headerTop{
width: 100%;
height: 150px;
background-image: url(../images/headerTop.png);
background-repeat: repeat-x;
position: absolute;
z-index:;
top:;
}
.header>ul{
width: 1260px;
height: 98px;
margin: 0 auto;
padding:;
padding-top: 85px;
list-style: none;
z-index:;
position: absolute;
left: 50%;
transform: translateX(-50%);
/*position: relative;*/
}
.header>ul>li{
margin:;
padding:;
width: 215px;
float: left;
height: 98px;
font-size: 18px;
/*position: relative;*/
}
.header>ul>li:nth-child(2){
margin-right: 398px;
}
.header>ul>li>a{
display: block;
width: 100%;
height: 100%;
text-align: center;
background: url("../images/hover.png");
transition: background-position 0s;
}
.header>ul>li:nth-child(2)>a{
background-position: 0 0;
}
.header>ul>li:nth-child(1)>a:hover{
background-position: 0 -98px;
}
.header>ul>li:nth-child(2)>a{
background-position: -215px 0;
}
.header>ul>li:nth-child(2)>a:hover{
background-position: -215px -98px;
}
.header>ul>li:nth-child(3)>a{
background-position: -825px 0;
}
.header>ul>li:nth-child(3)>a:hover{
background-position: -825px -98px;
}
.header>ul>li:nth-child(4)>a{
background-position: -1040px 0;
}
.header>ul>li:nth-child(4)>a:hover{
background-position: -1040px -98px;
}
.header>.logo{
width: 768px;
position: absolute;
left: 50%;
margin-left: -394px;
top:;
z-index:;
}
.header>a{
width: 393px;
height: 248px;
position: absolute;
left: 50%;
transform: translateX(-50%);
z-index:;
}
/*头部结束*/
/*内容开始*/
.main{
width: 100%;
height: 1080px;
position: relative; /*background-color: skyblue;*/
}
.main>.slogn{
/*width: 100%;*/
background: url(../images/slogan.png) no-repeat 0 0;
width: 1372px;
height: 419px;
position: absolute;
left: 50%;
margin-left: -698px;
top: 300px;
z-index:;
}
.main>.eyeList{
/*width: 100%;*/
/*background-color: skyblue;*/
width: 1061px;
list-style: none;
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 80px;
z-index:;
text-align: center;
}
.main>.eyeList>.eyeItem{
/*background-color: brown;*/
width: 347px;
height: 219px;
float: left;
background-image: url("../images/borde1.png");
background-repeat: no-repeat;
position: relative;
}
.main>.eyeList>.eyeItem>a{
position: absolute;
top: 25px;
left: 25px;
}
.main>.eyeList>.eyeItem>h3{
position: absolute;
top: 160px;
left: 100px;
font-size: 16px;
font-weight:;
color: #feda03;
text-align: center;
height: 25px;
line-height: 25px;
}
/*内容结束*/
/*底部开始*/
.footer{
width: 100%;
height: 502px;
background-color: #0D0017;
position: absolute;
left:;
top: 1080px;
border-top: 2px solid #ff7e00;
}
.footer>.footer_in{
width: 1000px;
height: 422px;
margin: 0 auto;
}
.footer_in>.footer_top{
padding-top: 125px;
padding-bottom: 45px; }
.footer>.footer_in>.footer_top>.fl>a{
display: inline-block;
text-decoration: none;
font-size: 14px;
color: #fff;
margin-right: 10px;
}
.footer>.footer_in>.footer_top>.fl i{
display: inline-block;
width: 19px;
height: 19px;
background: url("../images/footer-top.png") no-repeat;
background-position: -6px -7px;
margin-right: 7px;
vertical-align: text-top;
}
.footer>.footer_in>.footer_top>.fl a:nth-child(2)>i{
background-position: -36px -8px;
}
.footer>.footer_in>.footer_top>.fl a:nth-child(3)>i{
background-position: -6px -100px;
}
.footer>.footer_in>.footer_top>.fr{
float: right;
height: 30px;
line-height: 30px;
}
.footer>.footer_in>.footer_top>.fr>span{
font-size: 14px;
color: #fff;
margin: 0 10px;
}
.footer>.footer_in>.footer_top>.fr>i{
display: inline-block;
width: 95px;
height: 26px;
background: url("../images/footer-top.png") no-repeat;
background-position: -142px -44px;
vertical-align: top;
}
.footer>.footer_in>.footer_top>.fr>b{
display: inline-block;
width: 14px;
height: 14px;
line-height: 14px;
text-align: center;
font-size: 12px;
color: #fff;
background: #2b0473;
border: 1px solid #462385;
}
.footer .footer_middle .rl{
float: left;
}
.middle_left{
margin-right: 75px;
}
.footer_middle>.rl>p>a{
display: inline-block;
text-decoration: none;
color: #ccc;
font-size: 12px;
margin-left: 10px;
}
.footer_middle>.rl>p>span{
font-size: 14px;
color: #ccc;
margin: 0 10px;
}
.footer_middle>.rl>div>p{
font-size: 12px;
color: #8eb1bc;
}
.footer_middle>.rl>div>p>a{
text-decoration: none;
color: #8eb1bc;
}
.footer_middle>.rl>div>p>a:hover{
color: #fff;
}
.footer_in>.footer_bottom{
color: #417aa1;
/*padding-top: 35px;*/
font-size: 12px;
text-align: center;
margin-top: 35px;
}
/*底部结束*/

通过HTML和CSS1:1还原风暴英雄官方网站的更多相关文章
- Python3爬取王者官方网站英雄数据
爬取王者官方网站英雄数据 众所周知,王者荣耀已经成为众多人们喜爱的一款休闲娱乐手游,今天就利用python3 爬虫技术爬取官方网站上的几十个英雄的资料,包括官方给出的人物定位,英雄名称,技能名称,CD ...
- 风暴英雄 http 302重定向 正在等待游戏模式下载完成
抓包 在抓到的数据包里面,看到一个http get请求,右键选中,然后follow stream wireshark自动进行数据包过滤tcp.stream eq 1340,并且可以看到完整的数据通讯 ...
- SharePoint 2010 网站备份还原简单介绍
今天尝试了SharePoint2010网站的备份和还原,从网上搜一些文档看看,然后自己试试,感觉和2007的操作没什么太大的区别,跟大家分享下自己尝试的命令行方式和数据库的方式,2007自己常用的也是 ...
- 非智能手机通信录备份并还原至Android智能手机方法
随着智能手机早已深入普通用户的生活,2-3线城市的用户也逐渐从使用非智能机换成使用智能机.最近便遇见了这样一个转移通讯录的需求.之前使用的手机型号是BBK K201,通信录中绝大部分保存在了手机中,最 ...
- Sharepoint 2013 网站集的删除与还原
一.可以通过三种方法删除网站集: 1.打开Sharepoint 2013 管理页面首页 ---> 单击‘应用程序管理(Application Management)’并进入该页面 ---> ...
- Docker 学习笔记(持久化数据的备份,还原)
假如我们应用程序需要一台 mssql 数据库来持久化数据,我们将 mssql 数据库运行于 Docker 容器中: docker run -d -p 1433:1433 -e "ACCEPT ...
- MySql的备份还原
备份数据是数据库管理最常用的操作.为了保证数据库中数据的安全,数据管理员需要定期进行数据备份.一旦数据库遭到破坏,便可通过备份的文件来还原数据库.因此,数据备份是一项很重要的工作. 数据备份 使用my ...
- pyinstaller 还原python代码的方法
pyinstaller 的作用就是将python打包成对应平台的可执行文件.一般这种可执行文件的体积都比较大. 我们可以先通过逆向软件查看一下具体信息 查看字符串信息 只要有诸如以上的字符串 就说明这 ...
- 用Python爬取《王者荣耀》英雄皮肤数据并可视化分析,用图说话
大家好,我是辰哥~ 今天辰哥带大家分析一波当前热门手游<王者荣耀>英雄皮肤,比如皮肤上线时间.皮肤类型(勇者:史诗:传说等).价格. 1.获取数据 数据来源于<王者荣耀官方网站> ...
随机推荐
- 【Java并发基础】管程简介
前言 在Java 1.5之前,Java语言提供的唯一并发语言就是管程,Java 1.5之后提供的SDK并发包也是以管程为基础的.除了Java之外,C/C++.C#等高级语言也都是支持管程的. 那么什么 ...
- Ogre 的Node 位移、旋转
位移旋转有三种方式TS_LOCAL,TS_PARENT,TS_WORLD. TS_LOCAL是指自身坐标系,TS_PARENT是父节点坐标系,TS_WORLD是世界坐标系 比如 translate( ...
- PHP批量去除文件BOM头
auto 是否自动替换 默认否 dir 检查目录 默认./ display 是否显示所有文件 默认只显示有bom头的文件 <?php empty($_GET['auto']) && ...
- ios--->ios沙盒总结
ios沙盒总结 沙盒介绍 iOS应用程序只能在该程序创建的文件系统中读取文件,不可以去其它地方访问,此区域被成为沙盒,所以所有的非代码文件都要保存在此,例如图像,图标,声音,映像,属性列表,文本文件等 ...
- Macbook 安装 opencv(cv2) 及在pycharm 下的使用
python和opencv的安装都很顺利,就是在PyCharm下的配置浪费了一点时间. 一.原料 1.max系统 2.python(本文用的版本是3.6.5) 3.opencv(本文中使用的版本是3. ...
- pku1113-Wall 凸包(安德鲁算法版)
Wall 题目链接. Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 42823 Accepted: 14602 Descript ...
- Shrio | java.io.IOException: Resource [classpath:shiro.ini] could not be found
案例 今天项目启动时一直报异常,看了错误日志发现是shrio文件找不到引起的,异常: java.io.IOException: Resource [classpath:shiro.ini] could ...
- HTML5的基础学习
课前预习:HTML又被叫做超文本标记语言,它不是编程语言,是web中最微不足道的,但又是web中最微不足道的基石, 对零基础学习HTML的人员来说先认识HTML的标签和字体是必不可少的,万丈高楼平地起 ...
- LeetCode 200. Number of Islands 岛屿数量(C++/Java)
题目: Given a 2d grid map of '1's (land) and '0's (water), count the number of islands. An island is s ...
- GDI+如何判断一个点是否在区域内
https://msdn.microsoft.com/en-us/library/windows/desktop/ms533826(v=vs.85).aspx The purpose of hit t ...