我最终编写了以下 JavaScript 来执行此操作。基本上,我正在渲染两个不同的部分(使用 .oneup 和 .twoup 类),然后在显示 .oneup 时添加“预览”。
<script type="text/javascript">
var chartBar = $('#chart-bar');
function chartPreview(firstChart) {
var chartBarWidth = chartBar.width();
if (chartBarWidth > 600) {
var currentChart = $('.carousel-inner:visible .active');
// append the next widget to the current item
var chartToCheck = (firstChart) ? currentChart : currentChart.next();
if (chartToCheck.next()) {
chartToCheck.next().find('.widget').clone().appendTo(chartToCheck);
$('.carousel-inner').css({'margin-left': '10px', 'width': '98.8%'})
}
} else if (chartBarWidth > 1040) {
$('.carousel-inner').css({'margin-left': '0', 'width': '100%'})
}
}
$(document).ready(function() {
$('.widgets').sortable({
cursor: "move",
handle: ".heading"
}).disableSelection();
$('.boxes,.tasks').sortable();
var carousel = $('.carousel');
$(carousel).carousel({
interval: 0
});
if (chartBar.width() < 1040) {
chartBar.find('.oneup').show();
chartPreview(true);
carousel.bind('slide', function() {
chartPreview(false);
});
} else {
chartBar.find('.twoup').show();
}
});
如果我不必同时渲染 oneup 和 twoup 那就太好了,但我不确定如何使用 AngularJS 来做到这一点。这是我的一个 ng-repeat:
<div class="carousel-inner">
<div class="item chart"
ng-repeat="widget in widgets | filter: {type: 'chart'} | orderBy: 'order'"
ng-class="{active: $index == 0}">
<chart class="widget" value="{{widget}}" type="{{widget.chartType}}"></chart>
</div>
</div>
与 twoup ng-repeat 相比:
<div class="carousel-inner">
<div class="item chart"
ng-repeat="widget in widgets | filter: {type: 'chart'} | chunk: 2 | orderBy: 'order'"
ng-class="{active: $index == 0}">
<chart class="widget" value="{{widget[0]}}" type="{{widget[0].chartType}}"></chart>
<chart class="widget" value="{{widget[1]}}" type="{{widget[1].chartType}}"></chart>
</div>
</div>