Skip to content
This repository has been archived by the owner on May 17, 2020. It is now read-only.

mistic100/angular-jqcloud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AngularJS jQCloud

Bower version

Simple AngularJS directive for jQCloud, a beautiful words cloud generator.

Usage

<jqcloud words="words" width="500" height="350" steps="7"></jqcloud>

<script>
  var app = angular.module('app', [
    'angular-jqcloud'
  ]);

  app.controller('controller', function($scope) {
    $scope.words = [/* ... */];
  });
</script>

Consult jQCloud documentation for full options.