Photo Flow Flash Gallery
Use the famous streamline photo flow effect on your website. This effect is well known because of the cover flow gallery switching from iTunes.
Configuration file structure
XML configuration file structure
|
<gallery>
<items>
</gallery>
<item source="1.jpg" thumb="t1.jpg" description="Image 1" link="/images/1.jpg" target="_blank"/>
</items>
<item source="2.jpg" thumb="t1.jpg" description="Image 2" link="" target=""/> <item source="3.jpg" thumb="t1.jpg" description="Image 3" link="" target=""/> . . . |
source – image file name
thumb – thumbnail file name
description – Image description
link – link to the web-page
target - controls where the new document will be displayed
possible values:
- "_self" specifies the current frame in the current window
- "_blank" specifies a new window
- "_parent" specifies the parent of the current frame
- "_top" specifies the top-level frame in the current window
JSON configuration file structure
|
{
"gallery":
}
{
"items":
}
[
{
]
"source": "1.jpg",
},"thumb": "t1.jpg", "description": "Image 1", "target": "", "link": "" {
"source": "2.jpg",
},"thumb": "t2.jpg", "description": "Image 2", "target": "", "link": "" . . . . . {
"source": "55.jpg",
}"thumb": "t55.jpg", "description": "Image 55", "target": "", "link": "" |
source – image file name
thumb – thumbnail file name
description – Image description
link – link to the web-page
target - controls where the new document will be displayed
possible values:
- "_self" specifies the current frame in the current window
- "_blank" specifies a new window
- "_parent" specifies the parent of the current frame
- "_top" specifies the top-level frame in the current window





