Features

When creating your own pictures slideshow, you can change transition time of the slides, color and position of preloader, or add frame to your slideshow. You can also add different links to the slides (see the XML file example below).

Change these parameters, to configure widget (flashvars, passed to xbSlideshow.swf):

  • fileList: [*.xml] (path to external XML file, that contains image list (items.xml is default))
  • delayTime: [seconds] (time to show each image (3 is default))
  • transitionTime: [seconds] (transition time between images (1 is default))
  • frame: [*.png, *.gif] (path to external image, that is displayed on top)
  • preloaderColor: [000000..FFFFFF] (sets color of preloader (000000 is default))
  • preloaderPosX: [-x..x] (preloader X position change in pixels from center (0 is default))
  • preloaderPosY: [-y..y] (preloader Y position change in pixels from center (0 is default))

   
This is example of XML file, you should use to add images and links to your slideshow:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
< ?xml version="1.0" encoding="UTF-8" ?>
<gallery>
  <item>
    <picture>media/images/photo01.jpg</picture>
      <url>http://www.xorbin.com</url>
  </item>
  <item>
    <picture>media/images/photo02.jpg</picture>
      <url>http://www.example.com</url>
  </item>
  <item>
    <picture>media/images/photo03.jpg</picture>
      <url></url>
  </item>
</gallery>