An open API service indexing awesome lists of open source software.

https://github.com/sujaudd1n/animate_node

Append an HTML node in DOM with some type-like animation.
https://github.com/sujaudd1n/animate_node

animate-append animation typewriter-animation typewriter-effect

Last synced: 2 months ago
JSON representation

Append an HTML node in DOM with some type-like animation.

Awesome Lists containing this project

README

        

# AnimateNode

Append an HTML node with type like animation.
Implemented as ES6 module.

![demo](assets/demo.gif)

## CDN

-

## Tutorial

```js
// import the object
import { animateNode } from "./src/animateNode.js";

// Create or select the node you want to append.
// Assuming you have an HTML node *list* and you want to append
// it inside div

// char-appended animation
animateNode.char(div, list)

// textnode-appended animation
animateNode.text(div, list)
```

## Demo

Visit to see a working demo of both type of animation.