fakenickels / Animelt-Plugin

CSS3 animations fallback in pure JS implementation [Unmaintained]

Home Page:http://fakenickels.dev/Animelt-Plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Animelt-Plugin

My toy for complex animations (css3 fallbacks)

Getting Started

In the browser

Download the production version or the development version.

In your web page:

<script src="assets/animelt.min.js"></script>	
<script type="text/javascript">
	$("div").animelt({
		width: "40px",
		border: "2px solid #000"
	}, 1000, function(){
		console.log("It's finished!");
	}); // fantastic

	$("div").animelt({
		transform: "rotateX(30deg) rotateY(120deg)"
	}, 600); // incredible	

</script>

Examples

See examples in http://fakenickels.github.io/Animelt-Plugin

License

Copyright (c) 2013 Gabriel Rubens
Licensed under the MIT license.

Buy me a soda ;)

Donate

About

CSS3 animations fallback in pure JS implementation [Unmaintained]

http://fakenickels.dev/Animelt-Plugin

License:MIT License


Languages

Language:JavaScript 84.1%Language:HTML 15.9%