我找到了this question,答案对我来说很完美。能帮我实现这个问题的答案吗?可以在Codepen或其他地方使用ng-repet进行此更改吗?我不知道他说要实施时的意思:

1)我必须使用带有事件的指令才能被控制器接收

在此示例中,谁能更好地解释如何将nr-repeatpackery一起使用?

最佳答案

您可以在AngularJS应用程序中找到Packery集成的几个工作示例。

这是其中之一:http://codepen.io/beaver71/pen/XXYwGG与ng-repeat指令一起使用,如下所示:

<div ng-repeat="item in items" class="item" style="background-color: {{item.color}};" packery></div>


另一个密码笔:http://codepen.io/gruntruk/pen/Cpewt/

或一些Angular模块:


https://github.com/SunGard-Labs/angular-packeryhttp://sungard-labs.github.io/angular-packery/demos/
https://github.com/htapal/angular-packery

关于javascript - AngularJS和Packery,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35119409/

10-09 23:29