gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 10:55:08 24 4
gpt4 key购买 nike

我虔诚地遵循了这个教程: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%;}

最佳答案

从演示中可以看出,主图像的舞台似乎是 800 像素,因此只需为出现在主舞台上的图像添加最大宽度即可:

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

关于css - 如何在不破坏宽度的情况下调整 pikaChoose 插件的高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12585165/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com