|
楼主 |
发表于 2018-2-15 20:17:42
|
显示全部楼层
福建省漳州市
代码在这
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>新年快乐</title>
<style>
body{
background-color: #3399CC;
display:flex;
justify-content:center;
align-items:center;
position:relative;
overflow:scroll;
overflow-y:hidden;
overflow-x:hidden
}
.happy{
background-color:#FF6666 ;
text-align:center;
padding-top: 10px;
margin-top:12% ;
animation: happy 2s;
-webkit-animation: happy 2s;
width: 700px;
height: 200px;
}
h1{
font-family: "楷体";
font-size: 80px;
color: #FFFF00;
animation: hap1 4s;
-webkit-animation: hap1 4s;
}
@keyframes happy{
from{
width: 50px;
height: 200px;
}
to{
width: 700px;
height: 200px;
}
}
@-webkit-keyframes happy{
from{
width: 50px;
height: 200px;
}
to{
width: 700px;
height: 200px;
}
}
@keyframes hap1{
0%{opacity: 0;}
50%{opacity: 0;}
100%{opacity: 100;}
}
@-webkit-keyframes hap1{
0%{opacity: 0;}
50%{opacity: 0;}
100%{opacity: 100;}
}
</style>
</head>
<body>
<div class="happy">
<h1>大佬们新年快乐</h1>
</div>
</body>
</html>
|
|