<html>
<head>
<meta charset='utf-8'>
<title>case</title>
<style type='text/css'>
.div{
text-align:center
}
.img{
margin-top:100px;
width:200px;
height:200px
}
html:hover .img{
animation-name:img;
animation-delay:500ms;
animation-duration:1s;
animation-fill-mode:forwards
}
@keyframes img{
to{
margin-top:0px;
width:50px;
height:50px
}
}
p{
font-family:微软雅黑;
font-size:30px;
text-shadow:1px 1px 2px #b0b0b0;
opacity:1
}
html:hover p{
transition-delay:500ms;
transition-duration:1s;
font-family:微软雅黑;
font-size:10px;
text-shadow:1px 1px 2px #b0b0b0;
opacity:0
}
</style>
</head>
<body>
<div class='div'>
<img src='D:\0Files\HTML+CSS+JS\20 bilibili.png' class='img'>
<p>哔哩哔哩</p>
</div>
</body>
</html>