Author: | svichas |
---|---|
Views Total: | 2,393 views |
Official Page: | Go to website |
Last Update: | October 14, 2018 |
License: |
Preview:

Description:
wlcm is a dynamic word cloud generator which lets you create an animated, random word/tag scroller from an array of words you specify.
How to use it:
Create a container element to place the word cloud.
<section id="demo"></section>
Include the JavaScript file ‘wlcm.js’ at the bottom of the web page.
<script src="wlcm.js"></script>
Define an array of words to display in the word cloud.
// container for wlcm let welcome = document.getElementById("welcome"); // create wlcm object welcome.wlcm({ "words": [ "Hi!", "Hallo!", "Holla!", "Γεία!", "Bonjour!", "你好!", "ハロー!" ] });
Set the max/min animation speed.
welcome.wlcm({ "words": [ "Hi!", "Hallo!", "Holla!", "Γεία!", "Bonjour!", "你好!", "ハロー!" ], "min_speed": 1, "max_speed": 3 });
Changelog:
10/14/2018
- v1.0.0