🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

WordMagik is a jQuery text animation plugin that allows you to animate an array of words based on events.

text-animation

Documentation

WordMagik

A simple event based word animation plugin using jQuery and CSS animations. This plugin is inspired by WordsRotator Plugin by Andrea Pace. I required a similar functionality to wordsrotator but based on events so I wrote WordMagik.

Dependencies

1. jQuery

2. Animate.css

Installation and Usage

1. Include jQuery to your project

<head> 	<!-- Javascript Files --> 	<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script> </head> 

2. Include your build of Animate.css

<head> 	<!-- CSS Stylesheets --> 	<link rel="stylesheet" type="text/css" href="https://rawgit.com/daneden/animate.css/master/animate.min.css" />  	<!-- Javascript Files --> 	<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script> </head> 

3. Add WordMagik JS and CSS

<head> 	<!-- CSS Stylesheets --> 	<link rel="stylesheet" type="text/css" href="https://rawgit.com/daneden/animate.css/master/animate.min.css" /> 	<link rel="stylesheet" type="text/css" href="css/wordmagik.animate.min.css" />  	<!-- Javascript Files --> 	<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script> 	<script type="text/javascript" src="js/jquery.wordmagik.min.js"></script> </head> 

4. Initialize the plugin

<script type="text/javascript"> 	$(document).ready(function() { 		$(".the-word").wordmagik({ 			wordList: ["Awesome", "Cute", "Sexy", "Hot", "Swagging", "Perfect"], 			eventSelector: "#changeWord", 			onEvent: "click" 		}); 	}); </script> 

Options

1. randomize

A boolean of whether to pickup random words from the list or not. This is set to true by default. Setting this to false will use words indexwise.

2. wordList

An array of words. Words could be plain text or even HTML.

3. eventSelector

A selector to which the change word method will be bound. Example button.change-word, .change, #change, etc.

4. onEvent

An event on which the change word method will be called. Example hover, click etc.

5. animationIn

Type of animation for the appearing word. For more info see animate.css

5. animationOut

Type of animation for the disappearing word. For more info see animate.css

Author


You May Also Like