angular-jqcloud
v1.0.3
Published
AngularJS directive for jQCloud 2 plugin
Downloads
1,258
Maintainers
Readme
AngularJS jQCloud
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.