添加加载文本到 Colorbox 插件

发布于 2024-12-09 16:53:41 字数 173 浏览 0 评论 0原文

对于 Colorbox jQuery 插件(在这里找到):

我知道有一个 colorbox 的加载图形(设置为背景) #LoadingGraphic div),但是如何让文本出现在加载图形下方?

For the Colorbox jQuery plugin (found here):

I know there is a loading graphic for colorbox (set as the background of the #LoadingGraphic div), but how can I get text to appear below the loading graphic?

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

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

发布评论

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

评论(1

绅刃 2024-12-16 16:53:41

这可能不是最理想的,但看起来确实有效。 看看这个fiddle

当你初始化Colorbox插件时,loadingdiv将是创建但隐藏。您可以在其中添加一个 div 并为其指定一些样式。

$(".group1").colorbox({rel:'group1'});
$("#cboxLoadingOverlay").append("<div class='loading-text'>My Loading Text</div>")

CSS

.loading-text{margin-top:50px; font-weight:bold; font-family:arial; font-size:20px}

This might not be the most ideal but it looks like it works. Check out this fiddle

When you initialize the Colorbox plugin, the loadingdiv will be created but hidden. You could append a div inside of it and give it some styles.

$(".group1").colorbox({rel:'group1'});
$("#cboxLoadingOverlay").append("<div class='loading-text'>My Loading Text</div>")

CSS

.loading-text{margin-top:50px; font-weight:bold; font-family:arial; font-size:20px}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文