我正在尝试在我的 angular js 应用程序中添加 wookmark 布局。如果没有无限滚动,那么它会很好,但是当我添加 angularjs 无限滚动时,我的 wookmark 布局不起作用意味着当滚动布局不适用时。
我的无限滚动功能代码 -
$scope.onload = function() {
$scope.paramUrl = $location.url();
$scope.apiurl = $scope.apiurl+$scope.paramUrl;
if ($scope.paramUrl) {
$http({method: 'GET',url:$scope.apiurl}).success(function(data) {
$scope.productData = data.deals;
$scope.qitem = data;
});
}
else
{
$http({method: 'GET', url: $scope.url}).success(function(data) {
$scope.productData = data.deals;
});
}
};
和我的 jquery wookmark 代码 -
$(window).load(function() {
setTimeout(function() {
(function ($){
var handler = $('#tiles li');
handler.wookmark({
autoResize: true,
container: $('#main_pro_content'),
offset: 11,
outerOffset: 0,
itemWidth: 200,
fillEmptySpace: true
});
})(jQuery);
}, 500);
});