Press "Enter" to skip to content

Airport-Like Text Flip Display Animation Plugin For jQuery | splitFlap

jquery-split-flap module to convert div text to Splitflap (like an airport) display.

text flip animation css, flip clock animation css, javascript airport flip display, flip text animation, split flap text animation, card flip animation after effects

JQuery Split Flap Text Animation Plugin | Flapper

How to make use of it:

1. Load the jQuery javascript library and the required javascript files on the page.

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="js/mf/core/Core.js"></script>
<script src="js/jquery/jquery.splitflap.js"></script>

2. Wrap your text in a DOM element.

<div class="demo">Web</div>
<div class="demo">Code</div>
<div class="demo">Flow</div>

3. Connect to the plugin with the default settings.

$(document).ready(function() {
$('.demo').splitFlap();
});

4. Available options:

$(document).ready(function() {
$('.demo').splitFlap({
// the path to the image used by the splitflap.
image:          'images/chars.png',

// in CSS "background-position" format.
imageSize:      '',

// The string represented in the image.
charsMap:       'ABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789.,!?#@()+-=',

// The width of a character in the image, in pixels.
charWidth:      50,

// The height of a character in the image, in pixels.
charHeight:     100,

// The character used when the string contains a character not found in the charsMap.
charSubstitute: ' ',

padDir:         'left',
padChar:        ' ',

// The speed of the rotation, in letter by seconds.
speed:          3,

// Random speed added to the fixed speed.
speedVariation: 2,

// The destination text.
text:           '',

// The initial string the animation begin with.
textInit:       '',

// If set to false, you'll need to start the animation manually
autoplay:       true,

// Callback function when the aniamtion is complete.
onComplete:     function () {}
});
});

Airport-Like Text Flip Animation, jquery-splitFlap Plugin/Github


See Demo And Download

Official Website(zemax): Click Here

This superior jQuery/javascript plugin is developed by zemax. For extra Advanced Usages, please go to the official website.

Be First to Comment

    Leave a Reply

    Your email address will not be published. Required fields are marked *