如何在不破坏宽度的情况下调整pikaChoose插件的高度?

时间:2012-09-25 14:29:53

标签: css grails plugins

我虔诚地关注本教程:http://www.icodeya.com/2012/08/grails-creating-image-gallery-feat.html,了解如何在grails中添加图库功能。它很好用,但我想调整主(大)图像的高度。我成功地做到了,但是当我上传超过默认宽度的图像时,它会破坏整个布局。比如,图像的一部分将从布局的其余部分溢出。我想这更像是一个CSS问题..而且我很擅长CSS。代码如下。这里可以看到一个很好的演示: http://www.pikachoose.com/请注意,如果我将宽度更改为100%,则高度会变得不一致。 :(

*上传图片(如果没有)并亲自查看。

有人想帮帮我吗? :d

我提供免费的cookies。 :):)

@charset "UTF-8";
/* Just for the example. Fee free to delete these three lines */
body{font-family:Helvetica, sans-serif;}
a{color:white;}
.pikachoose {width: 800px; margin: 20px auto 20px auto;}

/* Style the thumbnails */
.pika-thumbs{ padding: 0 16px; height: 75px; margin-top: 10px; width: 100%;}
    .pika-thumbs li{ width: 144px; height:74px; margin: 5px; padding: 2px; overflow: hidden;
        float: left; list-style-type: none; background: #fafafa; border: 1px solid #e5e5e5; cursor: pointer;}
    .pika-thumbs li:last {margin: 0;}
    .pika-thumbs li .clip {position:relative;height:100%;text-align: center; vertical-align: center; overflow: hidden;}

/* The stage is the wrapper. The image fills 100% the height of the stage */
.pika-stage, .pika-textnav {width: 800px;}
.pika-stage {overflow:hidden; position: relative; background: #fafafa; border: 1px solid #e5e5e5; padding: 10px 10px 40px 10px; text-align:center; height:400px;}
.pika-stage img{height:100%;}

1 个答案:

答案 0 :(得分:4)

从观看演示看,主图像的舞台看起来像是800px,所以只需为主舞台上的图像添加最大宽度:

.pika-stage img {     身高:100%;     最大宽度:800px; / *与主舞台的宽度相同,因此图像不会超过* / }