对于一些实验,我需要把这个Angular jQcloud放在 Plunker。我把插件提供的所有必要代码都放了,还是不明白为什么那个文本云还没有出现在plunker。你能告诉我我错过了什么吗?
HTML:
<html ng-app="app" ng-controller="myCtrl">
<body>
<jqcloud words="words" width="500" height="350" steps="7"></jqcloud>
</body>
</html>
JS:
var app = angular.module('app', ['angular-jqcloud']);
app.controller('myCtrl', function ($scope) {
$scope.words = [/* ... */];
});