HTML⼩⽹页案例
全部复制即可
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>⽆标题⽂档</title>
<!--<script type="text/javascript">
var a = 15;
alert(a);
</script>-->
<style>
*{
margin:0;
padding:0;}
ul,li{
list-style:none;}
.clear:after{/*在每个.class之后插⼊新内容*/
content:"\200B";
display:block;/*使段落⽣成⾏内框,每个框是⼀个块级元素*/
height:0;
clear:both;/*是图像的左侧和右侧均不出现浮动*/
}
/*定义最外层盒⼦*/
.box{
padding:10px;
border:1px solid #000;}
/*定义左侧⼤图⽚的样式*/
.pic{
width:400px;
height:400px;
background:#F00;
float:left;
margin:5px 0;}
/*定义⼩图⽚集合样式*/
.list{
float:left;
width:700px;}
/*定义每⼀个⼩图⽚集合样式*/
.list li{
width:200px;
height:200px;
html制作一个网页background:#0F0;
float:left;
margin:5px 5px 0;
text-align:center;}
/*定义⼩图⽚下⽅⽂字样式*/
p{
p{
color:#FF0;
text-align:center;
margin-top:20px;}
/*定义每⼀哥⼩图⽚样式*/
.btn{
display:inline-block;/*定义⾏内块元素*/
width:70px;
height:70px;
border-radius:50%;/*向块级元素添加圆⾓边框*/
background:#F0F;
margin-top:50px;
opacity:0;/*透明度*/
transition: all 1s ease;/*变形(transform),转换(transition)和动画(animation)*/}
li:hover .btn{
opacity:1;}
li:hover p{
color:#636;}
</style>
</head>
<div class="box clear">
<div class="pic clear"></div>
<ul class="list">
<li><span class="btn"></span><p>⼤国外交</p></li>
<li><span class="btn"></span><p>⼤国外交</p></li>
<li><span class="btn"></span><p>⼤国外交</p></li>
<li><span class="btn"></span><p>⼤国外交</p></li>
<li><span class="btn"></span><p>⼤国外交</p></li>
<li><span class="btn"></span><p>⼤国外交</p></li>
</ul>
</div>
<body>
</body>
</html>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论