角度滑动器不会出现在离子应用程序中

时间:2017-10-11 13:04:53

标签: angular ionic-framework

我根据this

在离子中使用角度滑动

但页面上没有任何内容。 我的代码如下:

swiper.html:

<ks-swiper-container initial-slide="3" speed="2000" loop="true" show-nav-buttons="false" slides-per-view="3" space-between="5" pagination-clickable="false" override-parameters="{effect: 'coverflow',coverflow: {rotate: 50,stretch: 0,depth: 100,modifier: 1,slideShadows : false}}"  on-ready="onReadySwiper(swiper)">
    <ks-swiper-slide class="swiper-slide" ng-repeat="s in [1,2,3,4,5,6,7,8]">
        <img ng-src="img/puppy.jpg" width="100%">
    </ks-swiper-slide>            
</ks-swiper-container>

controller.js:

$scope.swiper = {};
$scope.onReadySwiper = function(swiper) {
    console.log("swiper ready");
}

这里调用了onReadySwiper函数,甚至它在DOM中加载但在屏幕上没有显示任何内容。 在此先感谢您的任何帮助

0 个答案:

没有答案