Skip to content Skip to sidebar Skip to footer

Jquery Vegas Plugin Overlay Not Working

I am using the plugin off of http://vegas.jaysalvat.com/documentation/slideshow/ The backgrounds are changing fine, but the overlay image is not working or rendering. Here is my co

Solution 1:

Same problem here, but based on the @pawel reply over I came to this

  $(function() {
    $.vegas('slideshow', {
      backgrounds:[
      { src:'images/pic1.jpg', fade:800 },
      { src:'images/pic2.jpg', fade:800 },
      { src:'images/pic3.jpg', fade:800 },
      { src:'images/pic4.jpg', fade:800 }
      ]
    })('overlay', {
      src:'vegas/overlays/15.png'
    });
  });

We probably made the same mistake, just copy paste from the documentation...


Post a Comment for "Jquery Vegas Plugin Overlay Not Working"