• Stars
    star
    482
  • Rank 91,212 (Top 2 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created almost 8 years ago
  • Updated about 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Animatelo is a bunch of cool, fun, and cross-browser animations for you to use in your projects. This is a porting to Web Animation API of the fabulous animate.css project.

Animatelo

CDNJS version

Just-add-water Web Animations

Animatelo is a bunch of cool, fun, and cross-browser animations for you to use in your projects. Great for emphasis, home pages, sliders, and general just-add-water-awesomeness.

This is a porting to Web Animation API of the fabulous animate.css project.

Check out all the animations here!

What is Web Animations API?

Web Animations API is a new JavaScript API for driving animated content on the web.

Web Animations unlocks features previously only usable declaratively, and exposes powerful, high-performance animation capabilities to developers.

With the Web Animations API, we can move interactive animations from stylesheets to JavaScript, separating presentation from behavior.

With the Web Animations API, we no longer need to rely on DOM-heavy techniques like writing CSS properties and scoping classes onto elements to control playback direction.

Browser Support

Web Animations API features is available by default in Firefox 48+ and Chrome 36+. For other browsers there’s a handy maintained polyfill that tests for feature support and adds it where necessary.

The polyfill and Animatelo are supported on modern versions of all major browsers, including:

  • Chrome
  • Firefox 27+
  • IE10+ (including Edge)
  • Safari (iOS) 7.1+
  • Safari (Mac) 9+

Installation

To install via Bower, simply do the following:

$ bower install animatelo --save

or you can install via npm:

$ npm install animatelo --save

Basic Usage

Here's a simple example of an animation that flip a text in a <h1>.
Try it as a live demo.

<!-- Include the polyfill -->
<script src="https://cdn.rawgit.com/web-animations/web-animations-js/2.2.2/web-animations.min.js"></script>

<!-- Include Animatelo -->
<script src="https://cdn.rawgit.com/gibbok/animatelo/1.0.3/dist/animatelo.min.js"></script>

<!-- Set up a target to animate -->
<h1 id="hello">Hello world!</h1>

<!-- Animate! -->
<script>
    window.animatelo.flip('#hello');
</script>

Advanced Usage Documentation

More information and technical documentation on Animatelo can be found at Usage page.

License

Animatelo is licensed under the MIT license.

More Repositories

1

typescript-book

The Concise TypeScript Book: A Concise Guide to Effective Development in TypeScript. Free and Open Source.
TypeScript
7,532
star
2

vim-cheat-sheet

Vim Cheat Sheet, useful command and information.
102
star
3

keyframes-tool

Keyframes-tool is a NodeJs command-line tool which converts CSS Animations to keyframes object suitable for Web Animations API. Use this tool to move your animations from stylesheets to JavaScript.
JavaScript
61
star
4

jquery-slidertv

SliderTV is an easy-to-use jQuery slider plugin optimized for Smart TV apps. Use jQuery SliderTV for controlling any HTML based content in horizontal or vertical order in a carousel-like fashion.
JavaScript
12
star
5

react-color-picker-palette

ColorPickerPalette is a React reusable color picker palette written in TypeScript.
TypeScript
9
star
6

blocchi-puzzle

A tetromino game based on React, Redux, TypeScript, and functional programming.
TypeScript
6
star
7

typescript-web-workers

How to make Web Workers work with TypeScript? This repository contains a minimal setup with a working example.
TypeScript
5
star
8

frontend-boilerplate

This project is an opinionated boilerplate which helps you build fast, robust, and adaptable single-page application (SPA) in TypeScript with React.
JavaScript
4
star
9

jjj

Minimal and fast command-line file lister with Vim key bindings.
C
4
star
10

gibbok

3
star
11

bem-pixel-perfect-responsive-design

An example of CSS pixel perfect adaptive design based on BEM methodology.
HTML
3
star
12

react-video-list

A basic "Top 10s Video List" application done in React, which I coded in a few hours as a way to pass the time on a rainy day.
JavaScript
3
star
13

notes-graphql

Notes on GraphQL
3
star
14

useful

Useful collection of Git and Linux commands
3
star
15

files-importer

files-importer is a Node.js command line tool, written in functional programming style, which synchronously copy the contents of a directory (include subdirectories recursively) to another location without creating duplicate files. It can be used to import only images and videos that have not already been imported from a camera or a memory card.
TypeScript
3
star
16

graphql-apollo-setup

TypeScript
2
star
17

dijit-select-optgroup

SelectOptgroup is a styleable, searchable drop down select box for Dojo which includes grouping of options (similar to html <select> element with <optgroup>).
JavaScript
2
star
18

image-editor

An image editor application based on React, TypeScript, and functional programming.
TypeScript
2
star
19

notes-web-vitals

Notes on Web Vitals
1
star
20

notes-next-js

Notes about Next.js
1
star
21

event-timeline

Event timeline
TypeScript
1
star
22

dojo-colorpicker

JavaScript
1
star
23

dojo-keyboard-shortcuts

Dojo Keyboard Shortcuts is an input capture module for Dojo. Whenever your application needs to detect custom shortcuts this module is for you.
JavaScript
1
star
24

javascript-faq

JavaScript FAQ is a mini collection of essential interview questions and answers.
1
star
25

notes-rxjs

Notes on RxJS
1
star
26

notes-pact

Notes on PACT contract testing
1
star
27

react-redux-weather-app

A weather application based on ES6, Flow, React, Redux, Material-UI and OpenWeatherMap's API [WORK IN PROGRESS].
JavaScript
1
star