您的位置:首页 > 运维架构 > 网站架构

一个很不错的H5动画网站

2016-08-10 10:16 232 查看
http://daneden.github.io/animate.css/下载下来引入到你的CSS文件里面,html代码是这样的

<!doctype html>

<html>

<head>

<meta charset="utf-8">

<title>动画库</title>

<style type="text/css">

body{

margin: 0;

}

div{

width: 200px;

height: 100px;

background-color:red;

position: absolute;

left: 50%;

top: 50%;

margin-left: -100px;

margin-top: -50px;

}

.always{

animation-iteration-count:infinite;

}

</style>

<link rel="stylesheet" href="../css/animate.css" type="text/css" />

</head>

<body>

<div class="animated shake always"></div>

</body>

</html>

很方便的东西
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  html css 动画