我现在正在与 Foundation 合作,所以我会尽力帮助您。因为在您的反馈会有所帮助之前我还没有这样做。
首先在您的 App.js 中为流体轨道添加这一行:
$('#featuredContent').orbit({ fluid: '800x800' });
800x800 是您的轨道滑块宽度和高度。
然后在您的 App.css 中添加以下内容:
#featuredContent .back {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
它在您的 .js 文件中引用您的 #featuredContent 并添加一个 .back 类,我们将在 HTML 代码中使用该类:
<div id="featuredContent">
<div>
<h4>This is a content slider.</h4>
<p>Each slide holds arbitrary content, like text or actions.</p>
<img class="back" src="/images/test.jpg" />
</div>
<div>
<h4>We can include text and buttons, like this!</h4>
<p>We take no responsibility for what happens if you click this button.</p>
<p><a href="http://www.youtube.com/watch?v=dQw4w9WgXcQ" class="button" target="_blank">Rock My World!</a></p>
<img class="back" src="/images/test.jpg" />
</div>
<div>
<h4>We can include text and buttons, like this!</h4>
<p>We take no responsibility for what happens if you click this button.</p>
<p><a href="http://www.youtube.com/watch?v=dQw4w9WgXcQ" class="button" target="_blank">Rock My World!</a></p>
<img class="back" src="/images/test.jpg" />
</div>
</div>
我想这应该可以解决问题,并在背景中放置带有标题(H4)和描述(P)的图片。您还可以使用以下方法自定义 css 中标题和描述的位置:
#featuredContent p {
}
和
#featuredContent h4 {
}