主题:请高手帮忙解决<thumbnail_dir>的问题
请看以下部分代码:(xml文件)
<?xml version="1.0" encoding="utf-8"?>
<gallery>
<!-- configure the gallery in this xml-node -->
<!-- 在配置图库这个XML节点 -->
<config>
...
<!-- set the location of the thumbnails relative to the gallery.swf -->
<!-- 设置缩略图的位置相对于gallery.swf -->
<thumbnail_dir>images/thumbs/</thumbnail_dir>
[color=FF0000]<!-- 希望改成以下效果,应该怎样写
<thumbnail_dir>images/[color=0000FF]自动获取imgClass的值[/color]/thumbs/</thumbnail_dir>
-->[/color]
<!-- set the actlocation of the actual high-res images relative to the gallery.swf -->
<image_dir>images/full/</image_dir>
[color=FF0000]<!-- 希望改成以下效果,应该怎样写
<image_dir>images/[color=0000FF]自动获取imgClass的值[/color]/full/</image_dir>
-->[/color] ...
</config>
...
<!-- this node contains all the albums -->
<albums>
<!-- 第一个图集 -->
<album title="美女清凉照" imgClass="01" description="性感美女一网打尽">
<image title="美女1" date="21.04.07" thumbnail="01.jpg" image="01.jpg">A perfect shot of a white tiger walking in the woods</image>
...
</album>
<!-- 第二个图集 -->
<album title="The Wild Cats." imgClass="02" description="few images of the wild cats.">
<image title="White Tiger" date="21.04.07" thumbnail="c1.jpg" image="c1.jpg">A perfect shot of a white tiger walking in the woods</image>
...
</album>
<!-- 第三个图集,如此类推 -->
...
</albums>
</gallery>
以上原代码只有一个缩略图文件夹<thumbnail_dir>和一个原图文件夹<image_dir>,一大堆不同类的原图和缩略图都放在同一文件夹中了,而我想设置多个不同的<thumbnail_dir>和<image_dir>(如上文示例),把不同类的图片单独放在一个文件夹中,而此文件夹中的原图和缩略图又分开放(如上显示),请高手可否帮忙解决?
<?xml version="1.0" encoding="utf-8"?>
<gallery>
<!-- configure the gallery in this xml-node -->
<!-- 在配置图库这个XML节点 -->
<config>
...
<!-- set the location of the thumbnails relative to the gallery.swf -->
<!-- 设置缩略图的位置相对于gallery.swf -->
<thumbnail_dir>images/thumbs/</thumbnail_dir>
[color=FF0000]<!-- 希望改成以下效果,应该怎样写
<thumbnail_dir>images/[color=0000FF]自动获取imgClass的值[/color]/thumbs/</thumbnail_dir>
-->[/color]
<!-- set the actlocation of the actual high-res images relative to the gallery.swf -->
<image_dir>images/full/</image_dir>
[color=FF0000]<!-- 希望改成以下效果,应该怎样写
<image_dir>images/[color=0000FF]自动获取imgClass的值[/color]/full/</image_dir>
-->[/color] ...
</config>
...
<!-- this node contains all the albums -->
<albums>
<!-- 第一个图集 -->
<album title="美女清凉照" imgClass="01" description="性感美女一网打尽">
<image title="美女1" date="21.04.07" thumbnail="01.jpg" image="01.jpg">A perfect shot of a white tiger walking in the woods</image>
...
</album>
<!-- 第二个图集 -->
<album title="The Wild Cats." imgClass="02" description="few images of the wild cats.">
<image title="White Tiger" date="21.04.07" thumbnail="c1.jpg" image="c1.jpg">A perfect shot of a white tiger walking in the woods</image>
...
</album>
<!-- 第三个图集,如此类推 -->
...
</albums>
</gallery>
以上原代码只有一个缩略图文件夹<thumbnail_dir>和一个原图文件夹<image_dir>,一大堆不同类的原图和缩略图都放在同一文件夹中了,而我想设置多个不同的<thumbnail_dir>和<image_dir>(如上文示例),把不同类的图片单独放在一个文件夹中,而此文件夹中的原图和缩略图又分开放(如上显示),请高手可否帮忙解决?