Skip to content

A react UI component wrapper library for Animate.css and other UI animations

License

Notifications You must be signed in to change notification settings

dondxniel/acid-ui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ACID UI

enter image description here

INTRO

ACID UI is a react component and animation library that abstracts out the logic behind compound and simple components without imposing a styling pattern on the developer. Its animation components and hooks are wrappers and helpers for animate.css CSS library, which is marked as a project dependency.

FEATURES

  1. Animated Renders: This is a component wrapper that is used to render a component with whatever specified type of animation. A use case for this is if you want components to get rendered to the UI in a smooth, calm fashion.
  2. Animation hook: This is a hook that programmatically causes your elements to animate in certain ways. A use case for this is if you're trying to make a form input 'wobble' if a certain character is being entered.

INSTALLATION

With npm: npm install acid-ui

With yarn: yarn add acid-ui

EXPORTS

Here are the components exported from this library

  • Render

Here are the hooks exported from this library

  • useAnimator

COMPONENTS

1. Render

Below is how the Render component is used in its simplest form.

import { Render } from "acid-ui";

function App() {
	return (
		<Render>
			Lorem, ipsum dolor sit amet consectetur adipisicing elit. Facilis
			consequatur mollitia odit adipisci recusandae enim! Quam dignissimos
			soluta dolor perspiciatis. Cupiditate odio provident aliquid enim
			ducimus inventore! Non, itaque nostrum!
		</Render>
	);
}

HOOKS

1. useAnimator

Below is how the useAnimator hook is used.

import { useAnimator } from "acid-ui";
import { useRef } from "react";

function App() {
	const inputRef = useRef(null);
	const { shakeX } = useAnimator(inputRef);

	const handleSubmit = (e) => {
		e.preventDefault();
		shakeX(); // Shakes the input field when the form is submitted
	};

	return (
		<div>
			<form onSubmit={handleSubmit}>
				<div>
					<input type="text" ref={inputRef} />
				</div>
				<div>
					<button>Submit Form</button>
				</div>
			</form>
		</div>
	);
}

export default App;

API

NOTE: All the properties of this element are optional. They are all initialized with default values that work well and are described in the table below. Of course, you have the option of overwriting them as you please; but be careful. Animations can be pretty displeasing to the user and can cause bad UX. So make them as subtle as possible.

1. Render

Properties Default Types Description
type "block" "block"|"inline" This describes whether or not you want the renderer to appear as a block or inline level element.
entranceDelay 0 0|2|3|4|5 This describes how many seconds you want the element's display on view to delay after rendering.
entranceSpeed "faster" "normal"|"slow"|"slower"|"fast"|"faster" This describes how fast you want the entrance animation to take place.
animationRepeat 0 0 | 1 | 2 | 3 | "infinite" This refers to the number of times you want the entrance animation to repeat itself; Warning: This can greatly affect user experience negatively if misused. A good rule of thumb, always leave it in 0 unless absolutely necessary.
entranceType "zoomIn" "specialsJackInTheBox" | "specialsRollIn" | "backInDown" | "backInLeft" | "backInRight" | "backInUp" | "bounceIn" | "bounceInDown" | "bounceInLeft" | "bounceInRight" | "bounceInUp" | "fadeIn" | "fadeInDown" | "fadeInDownBig" | "fadeInLeft" | "fadeInLeftBig" | "fadeInRight" | "fadeInRightBig" | "fadeInUp" | "fadeInUpBig" | "fadeInTopLeft" | "fadeInTopRight" | "fadeInBottomLeft" | "fadeInBottomRight" | "flipInX" | "flipInY" | "lightSpeedInRight" | "lightSpeedInLeft" | "rotateIn" | "rotateInDownLeft" | "rotateInDownRight" | "rotateInUpLeft" | "rotateInUpRight" | "zoomIn" | "zoomInUp" | "zoomInDown" | "zoomInLeft" | "zoomInRight" | "slideInDown" | "slideInLeft" | "slideInRight" | "slideInUp" This describes the type of animation you want to see during the entrance. Go the animate.style to see the above listed animations previews.

2. useAnimator

Access Variety
Destructured bounceIn, flash, pulse, rubberBand, shakeX, shakeY, headShake, swing, tada, wobble, jello, heartBeat,

About

A react UI component wrapper library for Animate.css and other UI animations

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published