<div class="owl-carousel">
<div ng-repeat="items in itemlist">
<a href="series.html"><img ng-src="{{items.imageUrl}}" /></a>
</div>
<div>
<a href="series.html"><img src="http://placehold.it/350x150" /></a>
</div>
</div>
在此处查看轮播:Owl-carousel2
我遇到的问题是,每当ng-repeat指令应用于轮播时,项目都是垂直堆叠而不是水平布局。
如果我遗漏了ng-repeat并使用静态项目,那么它就可以正常工作。
我是否可以编写指令并将其应用于owl-carousel以维护布局?
还有什么是导致旋转木马断裂的ng-repeat?
角度是否会以某种方式剥离应用于旋转木马的猫头鹰旋转木马类?
注意*如果手动构建列表,则迭代并使用:
附加元素var div = document.createElement('div');
var anchor = document.createElement('a');
var img = document.createElement('img');
.....
carousel.appendChild(div);
然后调用owl.owlCarousel({..})它有效,不确定这是否是最好的解决方法,因为ng-repeat使一切变得容易。
我发现了一个hack,如果我将owl init包装在超时中,那么ng-repat可以工作。
setTimeout(function(){
...call owl init now
},1000);
<link rel="stylesheet" href="css/owl.carousel.css"/>
<link rel="stylesheet" href="css/owl.theme.default.min.css"/>
.....
<script src="/js/lib/owl.carousel.min.js"></script>
<script>
$(document).ready(function() {
var owl = $('.owl-carousel');
owl.owlCarousel({
.....
});
owl.on('mousewheel', '.owl-stage', function(e) {
if (e.deltaY > 0) {
owl.trigger('next.owl');
} else {
owl.trigger('prev.owl');
}
e.preventDefault();
});
})
</script>
答案 0 :(得分:25)
能够在另一个DTing上修改post的指令,以使其在同一页面上使用多个轮播。这是一个有效的plnkr
- 编辑 - 有另一个plnkr来举例说明如何添加项目。执行reinit()不起作用,因为任何时候owl轮播被破坏它会丢失数据元素并且永远不会再次初始化。
var app = angular.module('plunker', []);
app.controller('MainCtrl', function($scope) {
$scope.items1 = [1,2,3,4,5];
$scope.items2 = [1,2,3,4,5,6,7,8,9,10];
}).directive("owlCarousel", function() {
return {
restrict: 'E',
transclude: false,
link: function (scope) {
scope.initCarousel = function(element) {
// provide any default options you want
var defaultOptions = {
};
var customOptions = scope.$eval($(element).attr('data-options'));
// combine the two options objects
for(var key in customOptions) {
defaultOptions[key] = customOptions[key];
}
// init carousel
$(element).owlCarousel(defaultOptions);
};
}
};
})
.directive('owlCarouselItem', [function() {
return {
restrict: 'A',
transclude: false,
link: function(scope, element) {
// wait for the last item in the ng-repeat then call init
if(scope.$last) {
scope.initCarousel(element.parent());
}
}
};
}]);
这是HTML
<!DOCTYPE html>
<html ng-app="plunker">
<head>
<meta charset="utf-8" />
<title>AngularJS Plunker</title>
<script>document.write('<base href="' + document.location + '" />');</script>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.carousel.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.theme.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.transitions.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.carousel.min.js" />
<script data-require="angular.js@1.3.x" src="https://code.angularjs.org/1.3.15/angular.js" data-semver="1.3.15"></script>
<script data-require="jquery@2.1.3" data-semver="2.1.3" src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.carousel.min.js"></script>
<script src="app.js"></script>
</head>
<body ng-controller="MainCtrl">
<data-owl-carousel class="owl-carousel" data-options="{navigation: true, pagination: false, rewindNav : false}">
<div owl-carousel-item="" ng-repeat="item in ::items1" class="item">
<p>{{::item}}</p>
</div>
</data-owl-carousel>
<data-owl-carousel class="owl-carousel" data-options="{navigation: false, pagination: true, rewindNav : false}">
<div owl-carousel-item="" ng-repeat="item in ::items2" class="item">
<p>{{::item}}</p>
</div>
</data-owl-carousel>
</body>
</html>
答案 1 :(得分:5)
我试着摆弄不同的指令,但是在我发现它之前没有运气,它可能有点修复,但它仍然有效。
这是我的div设置:
<div ng-repeat="item in mediaitems">
<img ng-src="item.imageurl" />
</div>
$ scope.mediaitems是使用ajax调用生成的。我发现如果我将owl初始化延迟到我的列表被填充之后,那么它将正确地呈现它。此外,如果您决定要更新动态列表,只需在填充列表后调用setupcarousel函数(如下所示),它将重新启动轮播。
请注意,carousel init位于匿名函数中的外部文件中。这就是我选择设置它的方式,你可以让你的在线或者你喜欢。
在我的控制器里我有这样的事情:
$scope.populate = function(){
$timeout(function(){
$scope.mediaitems = returnedlist; //list of items retrun from server
utils.setupcarousel(); //call owl initialization
});
};
var utils = (function(){
var setupcarousel = function(){
console.log('setting up carousel..');
var owl = $('.owl-carousel');
if(typeof owl.data('owlCarousel') != 'undefined'){
owl.data('owlCarousel').destroy();
owl.removeClass('owl-carousel');
}
owl.owlCarousel({
loop: false,
nav: true,
margin: 10,
responsive: {
0: {items: 3 },
600: {items: 5},
960: { items: 8},
1200:{items: 10},
1600:{items: 12}
}
});
};
return{
....
}
})();
答案 2 :(得分:1)
Angular UI团队将一组引导程序组件组合在一起,实现为angular指令。它们非常流畅且快速实现,并且因为它们是指令,所以在角度项目中使用jquery时不会遇到问题。其中一个指令是旋转木马。您可以找到它here和here。我用旋转木马长时间用角度来搞乱。经过一些恼人的修补后,我让猫头鹰上班,但AngularUI的实现更容易 。
答案 3 :(得分:0)
这与JKOlaf提到的答案相同。但是我添加了响应行为,提供了更好的用户体验。 2项重大改进: 1.完全响应的代码在不同设备中产生更好的UX。 2.现在处理“autoHeight”属性,从而产生较小的图像缩略图。
代码如下:
Was able to modify a directive from DTing on another post to get it working with multiple carousels on the same page. Here is a working plnkr
-- Edit -- Have another plnkr to give an example on how to add an item. Doing a reinit() did not work cause any time the owl carousel is destroyed it loses the data- elements and can never initialize again.
var app = angular.module('plunker', []);
app.controller('MainCtrl', function($scope) {
$scope.items1 = [1,2,3,4,5];
$scope.items2 = [1,2,3,4,5,6,7,8,9,10];
}).directive("owlCarousel", function() {
return {
restrict: 'E',
transclude: false,
link: function (scope) {
scope.initCarousel = function(element) {
// provide any default options you want
var defaultOptions = {
};
var customOptions = scope.$eval($(element).attr('data-options'));
// combine the two options objects
for(var key in customOptions) {
defaultOptions[key] = customOptions[key];
}
defaultOptions['responsive'] = {
0: {
items: 1
},
600: {
items: 3
},
1000: {
items: 6
}
};
// init carousel
$(element).owlCarousel(defaultOptions);
};
}
};
})
.directive('owlCarouselItem', [function() {
return {
restrict: 'A',
transclude: false,
link: function(scope, element) {
// wait for the last item in the ng-repeat then call init
if(scope.$last) {
scope.initCarousel(element.parent());
}
}
};
}]);
您可以根据自己的要求更改自适应项目计数。对于较大的图像缩略图,将其设置为较小的值。 希望这会对某人有所帮助,并感谢原始答案提供者。