Jump to content
Search Community

About the operation of the slide show

holla test
Moderator Tag

Recommended Posts

I added the following source so that it goes to the second page at the same time as opening the page.


 

Quote

slideshowNext ($ ('.slideshow'), false);

 

It worked fine in itself, but the slides just got jerky.
I imagine it's because I'm trying to go next before loading the image.

So I wondered if I could set a time lag for the start and start of the slide.
Wouldn't it work if you slide it after just a second or so? When.
Please let me know if you can add such a description to the above.

Of course, if you can fix it by other methods, you can make a suggestion there.
Thank you very much.


 

Quote

 

var $ = jQuery.noConflict(); var slideshowDuration = 4000; var slideshow=$('.main-content .slideshow'); function slideshowSwitch(slideshow,index,auto){ if(slideshow.data('wait')) return; var slides = slideshow.find('.slide'); var pages = slideshow.find('.pagination'); var activeSlide = slides.filter('.is-active'); var activeSlideImage = activeSlide.find('.image-container'); var newSlide = slides.eq(index); var newSlideImage = newSlide.find('.image-container'); var newSlideContent = newSlide.find('.slide-content'); var newSlideElements=newSlide.find('.caption > *'); if(newSlide.is(activeSlide))return; newSlide.addClass('is-new'); var timeout=slideshow.data('timeout'); clearTimeout(timeout); slideshow.data('wait',true); var transition=slideshow.attr('data-transition'); if(transition=='fade'){ newSlide.css({ display:'block', zIndex:2 }); newSlideImage.css({ opacity:0 }); TweenMax.to(newSlideImage,1,{ alpha:1, onComplete:function(){ newSlide.addClass('is-active').removeClass('is-new'); activeSlide.removeClass('is-active'); newSlide.css({display:'',zIndex:''}); newSlideImage.css({opacity:''}); slideshow.find('.pagination').trigger('check'); slideshow.data('wait',false); if(auto){ timeout=setTimeout(function(){ slideshowNext(slideshow,false,true); },slideshowDuration); slideshow.data('timeout',timeout);}}}); } else { if(newSlide.index()>activeSlide.index()){ var newSlideRight=0; var newSlideLeft='auto'; var newSlideImageRight=-slideshow.width()/8; var newSlideImageLeft='auto'; var newSlideImageToRight=0; var newSlideImageToLeft='auto'; var newSlideContentLeft='auto'; var newSlideContentRight=0; var activeSlideImageLeft=-slideshow.width()/4; } else { var newSlideRight=''; var newSlideLeft=0; var newSlideImageRight='auto'; var newSlideImageLeft=-slideshow.width()/8; var newSlideImageToRight=''; var newSlideImageToLeft=0; var newSlideContentLeft=0; var newSlideContentRight='auto'; var activeSlideImageLeft=slideshow.width()/4; } newSlide.css({ display:'block', width:0, right:newSlideRight, left:newSlideLeft ,zIndex:2 }); newSlideImage.css({ width:slideshow.width(), right:newSlideImageRight, left:newSlideImageLeft }); newSlideContent.css({ width:slideshow.width(), left:newSlideContentLeft, right:newSlideContentRight }); activeSlideImage.css({ left:0 }); TweenMax.set(newSlideElements,{y:20,force3D:true}); TweenMax.to(activeSlideImage,1,{ left:activeSlideImageLeft, ease:Power3.easeInOut }); TweenMax.to(newSlide,1,{ width:slideshow.width(), ease:Power3.easeInOut }); TweenMax.to(newSlideImage,1,{ right:newSlideImageToRight, left:newSlideImageToLeft, ease:Power3.easeInOut }); TweenMax.staggerFromTo(newSlideElements,0.8,{alpha:0,y:60},{alpha:1,y:0,ease:Power3.easeOut,force3D:true,delay:0.6},0.1,function(){ newSlide.addClass('is-active').removeClass('is-new'); activeSlide.removeClass('is-active'); newSlide.css({ display:'', width:'', left:'', zIndex:'' }); newSlideImage.css({ width:'', right:'', left:'' }); newSlideContent.css({ width:'', left:'' }); newSlideElements.css({ opacity:'', transform:'' }); activeSlideImage.css({ left:'' }); slideshow.find('.pagination').trigger('check'); slideshow.data('wait',false); if(auto){ timeout=setTimeout(function(){ slideshowNext(slideshow,false,true); },slideshowDuration); slideshow.data('timeout',timeout); } }); } } function slideshowNext(slideshow,previous,auto){ var slides=slideshow.find('.slide'); var activeSlide=slides.filter('.is-active'); var newSlide=null; if(previous){ newSlide=activeSlide.prev('.slide'); if(newSlide.length === 0) { newSlide=slides.last(); } } else { newSlide=activeSlide.next('.slide'); if(newSlide.length==0) newSlide=slides.filter('.slide').first(); } slideshowSwitch(slideshow,newSlide.index(),auto); } function homeSlideshowParallax(){ var scrollTop=$(window).scrollTop(); if(scrollTop>windowHeight) return; var inner=slideshow.find('.slideshow-inner'); var newHeight=windowHeight-(scrollTop/2); var newTop=scrollTop*0.8; inner.css({ transform:'translateY('+newTop+'px)',height:newHeight }); } $(document).ready(function() { $('.slide').addClass('is-loaded'); slideshowNext($('.slideshow'),false);//オープンと同時に2枚目に $('.slideshow .arrows .arrow').on('click',function(){ slideshowNext($(this).closest('.slideshow'),$(this).hasClass('prev')); }); $('.slideshow .pagination .item').on('click',function(){ slideshowSwitch($(this).closest('.slideshow'),$(this).index()); }); $('.slideshow .pagination').on('check',function(){ var slideshow=$(this).closest('.slideshow'); var pages=$(this).find('.item'); var index=slideshow.find('.slides .is-active').index(); pages.removeClass('is-active'); pages.eq(index).addClass('is-active'); }); /* Lazyloading $('.slideshow').each(function(){ var slideshow=$(this); var images=slideshow.find('.image').not('.is-loaded'); images.on('loaded',function(){ var image=$(this); var slide=image.closest('.slide'); slide.addClass('is-loaded'); }); */ var timeout=setTimeout(function(){ slideshowNext(slideshow,false,true); },slideshowDuration); slideshow.data('timeout',timeout); }); if($('.main-content .slideshow').length > 1) { $(window).on('scroll',homeSlideshowParallax); }


 

 

Link to comment
Share on other sites

Welcome to the forums, @holla

 

I'm a bit confused - it doesn't look like there's any GSAP code in what you posted. Did you realize these forums are specifically for GreenSock tool questions? Please read the forum guidelines. We'd be happy to help with any GSAP-specific questions you may have. Just please make sure you include a minimal demo (like in CodePen) and don't post minified code. 

 

Good luck with your project.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...