gpt4 book ai didi

javascript - Angular Flexslider 隐藏直到完全加载

转载 作者:行者123 更新时间:2023-11-29 19:23:03 24 4
gpt4 key购买 nike

我一直在努力让我的 Angular flexslider 以我想要的方式工作。现在它正在动态填充,但图像需要一秒钟才能加载。它看起来不太好。当一切都满载时,我希望它淡入淡出。我怎样才能做到这一点?我无法使用 ngAnimate 或回调。我也尝试过一个指令。我什至尝试过 $timeout 并在我的 Controller 中的函数末尾将变量设置为 true 和 false。没有任何效果。

到目前为止,这是我的代码:

HTML:

<flex-slider hide-till-load ng-show="showImages" class="animate-if" slider-id="slider" flex-slide="image in imagePaths track by $index" animation="fade" animation-loop="false" sync="#carousel" slideshow="false" control-nav="false" prev-text="" next-text="" init-delay="100" start="loaded()">
<li>
<img ng-src="{{image.custom}}" alt="Luxury Resort Rental Image"/>
</li>
</flex-slider>

注意:hide-till-load 是我尝试使用 $timeoutscope.$last 的指令。都没有用。 showImages 是我在某些功能结束时在 Controller 中设置的变量。但是,它不会等到图像完全加载,所以它无法按照我想要的方式工作。

Javascript:

//works but does not wait until images are fully loaded. Not what I want
$scope.loaded= function(){
console.log("this is after");
$timeout(function() {
$scope.showImages= true;
$scope.iconHide= true;
});
}

//doesn't work at all
resortModule.directive('hideTillLoad', function (){

return{
scope:false, //don't need a new scope
restrict: 'A', //Attribute type
link: function (scope, elements, arguments){
console.log(scope.$last);
if (scope.$last) {
console.log('page Is Ready!');
}
}
}
})

最佳答案

这里有一个 Fiddle 的链接,展示了如何让它工作:

https://jsfiddle.net/mpe51oso/

想法是添加一个指令,在加载图像时调用一个函数。该函数递增一个计数器 - 一旦计数器等于 slider 中的图像数量,它就会设置一个标志,然后评估为 true 并显示您的 slider 。

imageonload 指令是从这里复制的:Image loaded event in for ng-src in AngularJS

因此在您的 HTML 中添加 imageonload 属性指令并调用一个函数(此处为 incrementLoadCount)- 还要注意 ng-show

<flex-slider slide="item in items track by item.id" animation="slide" ng-show="allLoaded">
<li><img ng-src="{{item.img}}" imageonload="incrementLoadCount()" />{{item.name}}</li>
</flex-slider>

然后 - incrementLoadCount 递增 ;)

$scope.incrementLoadCount = function () {
imgLoadedCount++;
if (sliderImgCount == imgLoadedCount) {
$scope.allLoaded = true;
}
}

关于javascript - Angular Flexslider 隐藏直到完全加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32214809/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com