mootools にはあまり詳しくありませんが、キャプションを追加したい画像スライダーを実装しています。これまでのところうまくいきますが、画像がスライドするとキャプションが残ります...次の画像が新しいキャプションでスライドすると、キャプションが前の画像の上にスライドします...これは、画像が非表示になり、キャプションも非表示にできると思います...
initialize: function(menu, images, loader, options){
this.parent(menu, options);
this.images = $(images);
this.imagesitems = this.images.getChildren().fade('hide');
$(loader).fade('in');
new Asset.images(this.images.getElements('img').map(function(el) { return el.setStyle('display', 'none').get('src'); }), { onComplete: function() {
this.loaded = true;
$(loader).fade('out');
if (this.current) this.show(this.items.indexOf(this.current));
else if (this.options.auto && this.options.autostart) this.progress();
}.bind(this) });
if ($type(this.options.transition) != 'function') this.options.transition = $lambda(this.options.transition);
},
//And here is the HTML (and PHP-Codeigniter):
<li class="relative">
<p class="slogan"><span class="highlight"><?=$latestItem->slogan?><br/><a href="#">Lees meer »</a></span></p>
<img src="<?= $latestItem->picture ?>" alt="<?=$latestItem->title ?>" title="<?=$latestItem->title ?>" />
</li>
対応する画像と一緒にキャプションを消す方法を教えてもらえますか?