.mask{position:fixedleft:0right:0top:0bottom:0font-size:0text-align:centerbackground:rgba(0,0,0,0.8)}
.mask:after{content:""height:100%}
.mask:after,.main{display:inline-blockvertical-align:middle}
.main{font-size:16px}
<!DOCTYPE html><html>
<head>
<title>框</title>
<meta charset="utf-8">
<style type="text/css">
*{
margin: 0px
padding: 0px
}
#ul1>li{
background: #555
color: #fff
float: left
list-style: none
width: 4em
margin: 1em
text-align: center
cursor: pointer
}
.popBox1{
margin: 50px auto
text-align: center
width: 30em
border: 1px solid red
background: rgb(245,230,230)
z-index: 1000
display: none
}
.popBox1 h4{
margin: 2em 0em
}
.popBox1 span{
display: inline-block
width: 4.5em
line-height: 2em
font-weight: bold
color: #fff
margin: 1em 1em
margin-bottom: 3em
font-size: 1em
background: rgb(201,65,65)
border-radius: 5px
cursor: pointer
}
.clear{
clear: both
}
</style>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
</head>
<body>
<ul id="ul1">
<li>敌法</li>
<li>剑圣</li>
<li>蝮蛇</li>
<li>幻刺</li>
<li>娜迦</li>
<br class="clear"/>
</ul>
<div class="popBox1">
<h4>确定要干掉</h4>
<span onclick="sureDelete(this)">确定</span><span onclick="cancel(this)">取消</span>
</div>
<script type="text/javascript">
$(document).ready(function(){
$("#ul1>li").click(function(){
var txt=$(this).text()
$(".popBox1").children("h4").text('你确定要干掉:'+txt)
$(".popBox1").show()
})
})
function sureDelete(obj){
$(obj).parent().hide()
}
function cancel(obj){
$(obj).parent().hide()
}
</script>
</body>
</html>
html5新增标签大致如下:
<canvas>新元素
<canvas> 标签定义图形,比如图表和其他图像。该标签基于 JavaScript 的绘图 API
新多媒体元素
<audio> 定义音频内容
<video> 定义视频(video 或者 movie)
<source> 定义多媒体资源 <video>和 <audio>
<embed> 定义嵌入的内容,比如插件。
<track> 为诸如 <video>和 <audio>元素之类的媒介规定外部文本轨道。
新表单元素
<datalist> 定义选项列表。请与 input 元素配合使用该元素,来定义 input 可能的值。
<keygen> 规定用于表单的密钥对生成器字段。
<output> 定义不同类型的输出,比如脚本的输出。
新的语义和结构元素
HTML5提供了新的元素来创建更好的页面结构:
<article> 定义页面独立的内容区域。
<aside> 定义页面的侧边栏内容。
<bdi> 允许您设置一段文本,使其脱离其父元素的文本方向设置。
<command> 定义命令按钮,比如单选按钮、复选框或按钮
<details> 用于描述文档或文档某个部分的细节
<dialog> 定义对话框,比如提示框
<summary> 标签包含 details 元素的标题
<figure> 规定独立的流内容(图像、图表、照片、代码等等)。
<figcaption> 定义 <figure>元素的标题
<footer> 定义 section 或 document 的页脚。
<header> 定义了文档的头部区域
<mark> 定义带有记号的文本。
<meter> 定义度量衡。仅用于已知最大和最小值的度量。
<nav> 定义导航链接的部分。
<progress> 定义任何类型的任务的进度。
<ruby> 定义 ruby 注释(中文注音或字符)。
<rt> 定义字符(中文注音或字符)的解释或发音。
<rp> 在 ruby 注释中使用,定义不支持 ruby 元素的浏览器所显示的内容。
<section> 定义文档中的节(section、区段)。
<time> 定义日期或时间。
<wbr> 规定在文本中的何处适合添加换行符。
初学者建议多访问下菜鸟教程:网页链接,都是比较全面的基础知识,可以看做编程词典,即使老司机也经常去查一些资料。