Angularjs与Packery.js

时间:2013-10-21 15:08:14

标签: javascript angularjs twitter-bootstrap packery

尝试 Packery.js 使用我正在使用的 angularjs 应用。

出于某种原因,他们似乎并不能很好地在一起。我认为它可能会被isInitLayout错误的设置解决,但仍然没有爱。

这是我的(bootstrap 3)HTML:

<div class="row" class="js-packery" 
     data-packery-options='{ "itemSelector": ".packery-item", 
                             "gutter": 10,  
                             "columnWidth": 60, 
                             "isInitLayout": false }'>
    <artifact class="packery-item" ng-repeat="(index, thing) in data | limitObjectTo:4" thing="thing"></artifact>
</div>

我开始怀疑这是不是因为我正在使用Artifact指令......

2 个答案:

答案 0 :(得分:7)

如前所述,您必须制定一个处理Packery使用的指令。

该指令使得Packery在我正在进行的项目中使用AngularJS。

工作小提琴:http://jsfiddle.net/8P6mf/2/

HTML:

<div class="wrapper">
    <div ng-repeat="item in test" danny-packery>
        {{item.name}}
    </div>
</div>

JavaScript的:

var dannyPackery = app.directive('dannyPackery', ['$rootScope', function($rootScope) {
    return {
        restrict: 'A',
        link: function(scope, element, attrs) {
            console.log('Running dannyPackery linking function!');
            if($rootScope.packery === undefined || $rootScope.packery === null){
                console.log('making packery!');
                $rootScope.packery = new Packery(element[0].parentElement, {columnWidth: '.item'});
                $rootScope.packery.bindResize();
                $rootScope.packery.appended(element[0]);
                $rootScope.packery.items.splice(1,1); // hack to fix a bug where the first element was added twice in two different positions
            }
            else{
                $rootScope.packery.appended(element[0]);
            }
            $rootScope.packery.layout();
        }
    };
}]);

答案 1 :(得分:2)

您找到的任何JS库都不会简单地使用Angular。 Angular会对DOM进行编译,导致其他库丢失上下文。您必须编写自定义指令。

我发现了一个现有的Masonry指令:https://github.com/passy/angular-masonry和packery非常类似于Masonry,所以我相信你可以将它改编成包装。