Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter crystalgroves

    (@crystalgroves)

    Bump

    Thread Starter crystalgroves

    (@crystalgroves)

    Has no one had this issue with this particular plugin?

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    Delay is probably because of the image loading. This plugin requires large images that are heavy and take a moment to load.
    p.s: I know, I am quite late.

    @mohsin, nope, crystalgroves is right
    You have written the plugin, so that the first image is on a 0 opacity when the page is loaded. Depending on the delay between transitions there is a delay of course before the slideshow starts.

    I’ve changed my css like this:

    #fsi-full-bg img:first-of-type{
    opacity:1;
    }

    Now it works (at least in browsers that support first-of-type, which are the most)

    Hope that helps but a real solution would really be appreciated!

    @thisismyalterego, thanks, your CSS fixed it for me also. However I used first-child instead, as it’s more widely supported (IE8+) and does the same thing.

    #fsi-full-bg img:first-child{
    opacity:1;
    }

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    Thanks ConorLuddy and thisismyalterego, its included in plugin now.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Delay in background show starting?’ is closed to new replies.