Skip to content

sujaudd1n/animate_node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AnimateNode

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

demo

CDN

Tutorial

// 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 https://sujaudd1n.github.io/animate_node/ to see a working demo of both type of animation.