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>

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 Jerry 的頭像
    Jerry

    Bug倉庫 // 程式日記

    Jerry 發表在 痞客邦 留言(0) 人氣()