我找到了这个我真正爱上的主题。
我想用这个主题制作我的投资组合网站,但这里是我希望它实现的一些变化。
当您单击任何缩略图时,其他图像将向右弹出,这是您希望它展示的主图像。我希望该图像很大,可能 1280 px并且溢出自动或可滚动
我给了父div
溢出属性自动,但它没有用。然后,我改为滚动,仍然无法正常工作
这是HTML:
<section class="no-padding" id="portfolio">
<div class="container-fluid">
<div class="row no-gutter popup-gallery">
<div class="col-lg-8 col-lg-offset-2 text-center portfolio_text_padding">
<h2 class="section-heading">Portfolio</h2>
<hr class="light color">
<p class="text-faded portfolio">
Portfolio time another word it is time to showcase the work.
</p>
</div>
<div class="col-lg-4 col-sm-6">
<a href="img/portfolio/bkg.png" class="portfolio-box" >
<img src="img/portfolio/thumbnails/1.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
所以我在这些缩略图中放入的图像是1400px到2000px以及我从behance得到的这个想法
非常感谢你。
答案 0 :(得分:0)
https://css-tricks.com/almanac/properties/o/overflow/
在这个小提琴中你可以尝试一下
#mydiv {
overflow: auto;
max-width: 800px;
max-height: 600px;
}
然后点击“运行”
希望这会有所帮助:) 让我知道