• Stars
    star
    104
  • Rank 330,604 (Top 7 %)
  • Language
    JavaScript
  • License
    Other
  • Created over 7 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

"shuffle-text" is JavaScript text effect library such as cool legacy of Flash.

ShuffleText

Latest NPM release License

This is the JavaScript library for text effect such as Flash contents.

Setup

Script Install

<script src="shuffle-text.js"></script>

NPM Install

$ npm install shuffle-text

If you use this js library in es6.

import ShuffleText from 'shuffle-text';

Demo

https://ics-ikeda.github.io/shuffle-text/examples/plain/

Basic Usage Example

<!DOCTYPE html>
<html>
<head>
  <script src="shuffle-text.js"></script>
</head>
<body>
  <h1 id="myText">This is a ShuffleText.js Examle</h1>
  <script>
    var el = document.getElementById("myText");
    var text = new ShuffleText(el);
    text.start();
  </script>
</body>
</html>

Showcase

ClockMaker Labs - Interaction Design × Web Technology

Beautifl - Flash Gallery of wonderfl

æ—„æœŹć…šć›œèŠ±çČ‰éŁ›æ•Łăƒžăƒƒăƒ— Pollen Map in Japan | ICS

APIs

Constructor

new ShuffleText(element)

API Reference is here.