close
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
.imgbecliped{
position: absolute;
clip:rect(0px 200px 200px 0px);
transition: 1s;
}
.imgbecliped:hover{
animation:clip 2s forwards;
transition: 1s;
}
@keyframes clip{
0%{
clip:rect(0px 200px 200px 0px);
}
25%{
clip:rect(50px 200px 200px 0px);
}
50%{
clip:rect(50px 200px 200px 50px);
}
75%{
clip:rect(50px 150px 200px 50px);
}
100%{
clip:rect(50px 150px 150px 50px);
}
}
</style>
</head>
<body>
<img src="https://api.fnkr.net/testimg/200x200/00a/FFF/?text=A" class="imgbecliped">
</body>
</html>
全站熱搜
留言列表