角度光滑转换不适用于动态ng-repeat

时间:2015-06-29 05:44:09

标签: javascript jquery angularjs slick.js

我使用angular-slick获得了以下代码。 fevt不断改变滑过第一个光滑的旋转木马。

<slick  slides-to-scroll="1" arrows="false" current-index="slick.current"  class="first-slide"  on-after-change="slick.onAfterChange(this)">
    <div ng-repeat="s in evt">
    </div>
</slick>

<slick  slides-to-scroll="{{numtoslide}}"  init-onload=true data="fevt" arrows="false" variable-width="true" center-padding="60px" center-mode="false">
    <div ng-repeat="t in fevt" ng-if="t.section != 'venues'" style="width:320px;margin-right:5px;" >
   </div>
</slick>

about.js

$scope.slick = { current:0, init : function(){}, goto : function(index)   {this.current = index}, next : function(index){return this.current++}, prev : function(index){this.current--}, onBeforeChange : function(){}, onAfterChange : function(){} }

$scope.slick.onAfterChange = function(e){   
    $scope.fevt = [];
    for(var j=0; j< $localStorage.eventlist[0].items.length; j++){
        if($localStorage.eventlist[0].items[j].related_venue == $scope.test){
            $scope.fevt.push($localStorage.eventlist[0].items[j]);
        }
    }       
    $scope.$apply();                    
}

slick.js

if (scope.initOnload) {
    isInitialized = false;
    return scope.$watch('data', function (newVal, oldVal) {
        if (newVal != null) {
            return $transclude(function (clone, scope) {
                var compiled;
                if (isInitialized) {
                    destroySlick();
                }
            compiled = $compile(clone)(scope);
            element.append(compiled);

            initializeSlick();
            return isInitialized = true;
        });
    }else{
        isInitialized = false;
        initializeSlick();
    }
});
} else {
    return $transclude(function (clone, scope) {
        var compiled;
        compiled = $compile(clone)(scope);
        element.append(compiled);
        return initializeSlick();
    });
}

使用afterchange事件滑过时检测到newval但是secound carousel没有根据新数组更新

任何帮助表示感谢

1 个答案:

答案 0 :(得分:0)

我找不到解决方案,所以我改变方法使其发挥作用。

我结合光滑和灵活的方式来实现我想要的东西。

Slick加载第一个滑块和afterChange函数触发事件并创建用于ng-repeat的新数组,每次在第一个滑块中滑动时,flexi都会生成新的silder。

谢谢