1. velocity.js 插件介绍
Velocity 是独立于jQuery的,但两者可以结合使用的动画插件。用法类似 jq 的 animate ,但是支持更高级动画。
(
颜色动画、转换动画(transforms)、循环、 缓动、SVG 动画、和 滚动动画
)
2. 例子代码
<!DOCTYPE html>
<html lang="en"> <head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head> <body> <h1>666</h1> <script src="http://velocityjs.org/js/libs/jquery-1.11.1.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/velocity/1.5.0/velocity.min.js"></script>
<script> $('h1')
.velocity({
fontSize:100,
backgroundColor: "#f06d06",
backgroundColorAlpha: 0.8,
color:'#fefefe'
},1500)
.velocity('reverse',500); </script> </body> </html>
3. 相关链接