我正在尝试单独显示单个图像,并在滑块中显示多个图像。唯一的问题是我无法让滑块中的图像与单个图像匹配相同的高度,它显示的图像要小得多。如何获得匹配的图像大小?即使我得到相同高度和宽度的图像,滑块中的图像也会显示得更小。
这是一个显示图像的应用程序:这里
(忽略通知错误)
显示图像和滑块的代码:
<?php
//start:procedure image
if(count($arrImageFile[$key]) == 1){
foreach ($arrImageFile[$key] as $i) {
?>
<p><img alt="<?php echo $i; ?>" height="200" width="200" src="<?php echo 'ImageFiles/'.$i; ?>"></p>
<?php
}
} else if(count($arrImageFile[$key]) > 1){
?>
<style>
#galleriaimage_<?php echo $key; ?>{ width: 200px; height: 250px; background: #000 }
</style>
<div id="galleriaimage_<?php echo $key; ?>">
<?php foreach ($arrImageFile[$key] as $i) { ?>
<img alt="<?php echo $i; ?>" height="250" width="200" src="<?php echo 'ImageFiles/'.$i; ?>">
<?php } ?>
</div>
<script type="text/javascript">
Galleria.loadTheme('jquery/classic/galleria.classic.min.js');
Galleria.run('#galleriaimage_<?php echo $key; ?>');
</script>
<?php
}