提交 3b8e095d 编写于 作者: WRVR's avatar WRVR

add test.html which is a animation test.

上级 e82a2b73
<!DOCTYPE html>
<html>
<head>
<title>Flip_2 Animation</title>
<style>
@keyframes flip_2 {
from { background-color: black; transform: rotateY(0); }
to { background-color: green; transform: rotateY(180deg); }
}
.box {
width: 100px;
height: 100px;
background-color: red;
animation-name: flip_2;
animation-duration: 2s;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册