我想用 nivo 滑块在图片的左侧显示不同的文本,让它像图片一样滑动。我尝试了不同的解决方案,但我无法将文本移到图片之外,因为当我向左侧添加负值时,我的标题消失了——它只是在图片上可见。所以问题是如何在图像之外设置标题的位置 - 这不是图像的一部分?我怎样才能做到这一点?也许 nivo 滑块不是正确的方法?
-----------------------------------------
| |
| image |
------------- | |
| caption | | |
-------------- -----------------------------------------
感谢你的回答。到目前为止我有这个:HTML
<div id="feature-text-01" class="nivo-html-caption">
<p><h2>Title 1</h2></p>
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr.</p>
</div>
<div id="feature-text-02" class="nivo-html-caption">
<p><h2>Title 2</h2></p>
<p>sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.</p>
</div>
<div id="feature-text-03" class="nivo-html-caption">
<p><h2>Title 3</h2></p>
<p>At vero eos et accusam et justo duo dolores et ea rebum.</p>
</div>
<div id="feature-text-04" class="nivo-html-caption">
<p><h2>Title 4</h2></p>
<p>At vero eos et accusam et justo duo dolores et ea rebum.</p>
</div>
CSS
.nivo-caption {
width: 200px;
height: 250px;
left: -200px; /* same as the width */
}