Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Josh Leuze

    (@jleuze)

    Hi, have you set the height and width on the slideshow settings page? It looks like they are empty, which could cause issues:

    /* <![CDATA[ */
    var meteorslidessettings = {"meteorslideshowspeed":"1000","meteorslideshowduration":"5000","meteorslideshowheight":"","meteorslideshowwidth":"","meteorslideshowtransition":"scrollLeft"};
    /* ]]> */

    Thread Starter email889

    (@email889)

    I added the W and H in the Slide setting but still no luck. Plus, I have tried deactivated all other plugins.

    Plugin Author Josh Leuze

    (@jleuze)

    I found the source of the problem, you have some custom rules in your stylesheet for Meteor Slides:

    .meteor-slides .mslide img, .meteor-slides .mslide-1 {
        -moz-transition: all 1s ease-out 0.7s;
        height: 410px;
        margin: 0;
        width: 896px;
    }

    When I disable the -moz-transition: all 1s ease-out 0.7s; rule in Firebug, the slideshow works correctly.

    Thread Starter email889

    (@email889)

    Thank you!!

    That fix that problem. But I have to sacrifice the easing when resize. Is there any other way around?

    Plugin Author Josh Leuze

    (@jleuze)

    You could try applying the easing to just the image, the slideshow targets the .mslide containers, so that might work better. But I think you might have an easier time adding easing with jQuery. You can ease the slide transitions with the jQuery Easing plugin, so it might be easier to ease the scaling with that too.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘[Plugin: Meteor Slides] overlapping and blank gap’ is closed to new replies.