向挤压框添加标题

发布于 2024-10-14 17:30:48 字数 227 浏览 4 评论 0原文

我正在使用 http://digitarald.de/project/squeezebox/ for mootools 1.2

有一个添加图像或内容的选项,但我想在两者之间做一些事情;或两者兼而有之。本质上是添加一张图像,下面有一些内容。

我有什么见解可以合并这些吗?

I'm using http://digitarald.de/project/squeezebox/ for mootools 1.2

There is an option to add a image or content, but I'd like to do something in between; or both. Essentially adding an image with some content underneath.

any insight how I could merge these?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

﹎☆浅夏丿初晴 2024-10-21 17:30:48

您可以将图像和内容包装在 div 中,然后使用挤压框显示 div 内容。
我使用了示例@ http://digitarald.de/project/ queezebox/1-1/showcase/get-elements/ 使用挤压框显示内容和图像。

<a href="#demo-target-clone" rel="boxed">Show Image & Content</a> 

<div id="demo-target-clone">
    <img src="http://farm3.static.flickr.com/2268/1624148602_c69850e3fc_t.jpg" alt="Sunny autumn river">
    <p>Image Content</p>
</div>

<script type="text/javascript">
window.addEvent('domready', function() {

    SqueezeBox.assign($('a[rel=boxed][href^=#]'), {
        size: {x: 200, y: 200}
    });

});
</script>

检查工作示例@ http://www.jsfiddle.net/AL93a/

You can wrap the image and content in a div and then use display the div a content using a squeezebox.
I have used the example @ http://digitarald.de/project/squeezebox/1-1/showcase/get-elements/ to show content and image using Squeeze box.

<a href="#demo-target-clone" rel="boxed">Show Image & Content</a> 

<div id="demo-target-clone">
    <img src="http://farm3.static.flickr.com/2268/1624148602_c69850e3fc_t.jpg" alt="Sunny autumn river">
    <p>Image Content</p>
</div>

<script type="text/javascript">
window.addEvent('domready', function() {

    SqueezeBox.assign($('a[rel=boxed][href^=#]'), {
        size: {x: 200, y: 200}
    });

});
</script>

Check working example @ http://www.jsfiddle.net/AL93a/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文