第三方动画
2020-07-25 本文已影响0人
Amanda妍
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>第三方动画</title>
<link rel="stylesheet" type="text/css" href="css/animate.css"/>
<style type="text/css">
#one{
width: 100px;
height: 200px;
background-color: orange;
text-align: center;
margin-left: 20px;
line-height: 200px;
}
#one:hover{
animation-play-state: paused;
}
</style>
</head>
<body>
<div id="one" class=" animated flip delay-1s infinite">哈哈哈哈哈</div>
</body>
</html>