How to fade div out, change background image and fade in within a loop?

MeltingDog

I need to create my own image slider by changing the background image of a div. I have done this but want to add a fade in/out transition effect.

So far I have:

    var now = 0;
    var int = self.setInterval("changeBG()", 5000);
    var array = ["[[*HomeImage1]]", "[[*HomeImage2]]", "[[*HomeImage3]]", ];


    function changeBG(){
        now = (now+1) % array.length ;
        $('.heroslide').fadeOut(300).delay(1000).css('background-image', 'url("' + array[now] + '")');
        $('.heroslide').fadeIn(300);

    }

But try as I might I cannot get the transitions and css change to work in the right order.

Can anyone point me in the right direction?

somethinghere

You should try to use a recursive function:

var now = 0;
var int = self.setInterval("changeBG()", 5000);
var array = ["[[*HomeImage1]]", "[[*HomeImage2]]", "[[*HomeImage3]]", ];

function changeBG(){
    now = (now+1) % array.length ;
    // Fade out
    $('.heroslide').animate({opacity:0}, function(){
         // Change, fade in, trigger function after 5 seconds again.
         $('.heroslide')
             .css('background-image', 'url("' + array[now] + '")')
             .animate({opacity:1}, function(){
                 setTimeout(changeBG, 5000);
             });
    });
}

Now just call changeBG() once to start animating!

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

How to Fade out background-color of a div

분류에서Dev

on hover and on click how to fade out image and fade in content text

분류에서Dev

How to fade in and out an ActivityIndicator in Swift?

분류에서Dev

JQuery fade effect for background image on mouseenter

분류에서Dev

fade background image and then show text(not faded) on hover

분류에서Dev

Animating tooltip fade in and out

분류에서Dev

Fade in/out while resizing

분류에서Dev

jquery fade in then fade out automatically once

분류에서Dev

Fade Out each div on click with the matching data attr

분류에서Dev

How to fade multiple background colors after few seconds?

분류에서Dev

Jquery fade in and out with mouseover not working

분류에서Dev

fade in/out not working with pop up

분류에서Dev

setInterval to fade in then fade out pure javascript no jquery 또는 css

분류에서Dev

JQuery event not firing to fade out alert box

분류에서Dev

How to make section fade on scroll?

분류에서Dev

jQuery fade - Display div on page load

분류에서Dev

trim and fade in/out video and audio with avconv (or different tool)

분류에서Dev

jQuery automatically fade in next html element then loop to restart

분류에서Dev

How I make my Dropdown Menu Fade-In Using CSS

분류에서Dev

jQuery fade in page load

분류에서Dev

Website fade when loading

분류에서Dev

tab content doesn't fade out when I chose another tab

분류에서Dev

How to change web browser's tab bar background color or image?

분류에서Dev

How do I change the background image of a UICollectionViewCell that has been tapped?

분류에서Dev

How to Change Button Background Image inside Listbox In Windows Phone 8

분류에서Dev

Div Fade-In when on screen (현재 자동 페이드!?)-Parallax Site

분류에서Dev

div 세트를 가질 때 fadeToggle + fade 사용

분류에서Dev

how to change dynamically created div's background with on click JavaScript?

분류에서Dev

How can i make the div clickable with entire background image?

Related 관련 기사

  1. 1

    How to Fade out background-color of a div

  2. 2

    on hover and on click how to fade out image and fade in content text

  3. 3

    How to fade in and out an ActivityIndicator in Swift?

  4. 4

    JQuery fade effect for background image on mouseenter

  5. 5

    fade background image and then show text(not faded) on hover

  6. 6

    Animating tooltip fade in and out

  7. 7

    Fade in/out while resizing

  8. 8

    jquery fade in then fade out automatically once

  9. 9

    Fade Out each div on click with the matching data attr

  10. 10

    How to fade multiple background colors after few seconds?

  11. 11

    Jquery fade in and out with mouseover not working

  12. 12

    fade in/out not working with pop up

  13. 13

    setInterval to fade in then fade out pure javascript no jquery 또는 css

  14. 14

    JQuery event not firing to fade out alert box

  15. 15

    How to make section fade on scroll?

  16. 16

    jQuery fade - Display div on page load

  17. 17

    trim and fade in/out video and audio with avconv (or different tool)

  18. 18

    jQuery automatically fade in next html element then loop to restart

  19. 19

    How I make my Dropdown Menu Fade-In Using CSS

  20. 20

    jQuery fade in page load

  21. 21

    Website fade when loading

  22. 22

    tab content doesn't fade out when I chose another tab

  23. 23

    How to change web browser's tab bar background color or image?

  24. 24

    How do I change the background image of a UICollectionViewCell that has been tapped?

  25. 25

    How to Change Button Background Image inside Listbox In Windows Phone 8

  26. 26

    Div Fade-In when on screen (현재 자동 페이드!?)-Parallax Site

  27. 27

    div 세트를 가질 때 fadeToggle + fade 사용

  28. 28

    how to change dynamically created div's background with on click JavaScript?

  29. 29

    How can i make the div clickable with entire background image?

뜨겁다태그

보관