Shadowbox 故障排除

发布于 2024-08-13 07:48:44 字数 630 浏览 4 评论 0原文

大家好,我正在尝试让 Shadowbox 正常工作。每当我单击该链接时,它都会在新页面中打开电影。这是 head 标签中的代码:

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script>
<link rel="stylesheet" type="text/css" href="shadowbox.css">
<script type="text/javascript">
Shadowbox.init({
players: ["qt"];
});
</script>

这是 body 部分中的代码:

<div id="footer">
<a rel="shadowbox;width=640;height=360" href="Intro Movie.mov">Movie</a>
</div>

有人发现任何问题吗?

Hey guys, I'm trying to get Shadowbox to work. Whenever I click the link, it just opens the movie in a new page. Here's the code in the head tags:

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script>
<link rel="stylesheet" type="text/css" href="shadowbox.css">
<script type="text/javascript">
Shadowbox.init({
players: ["qt"];
});
</script>

And here's the code in the body section:

<div id="footer">
<a rel="shadowbox;width=640;height=360" href="Intro Movie.mov">Movie</a>
</div>

Does anyone see any problems?

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

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

发布评论

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

评论(2

枯寂 2024-08-20 07:48:45

JSON 设置对象中不应包含分号,如下所示:

Shadowbox.init({
players: ["qt"]
});

You shouldn't have a semicolon in your JSON settings object, like this:

Shadowbox.init({
players: ["qt"]
});
浅唱ヾ落雨殇 2024-08-20 07:48:44

您似乎缺少实际的 Shadowbox.js 文件。尝试在 Shadowbox.css 链接定义下面添加类似的内容:

<script type="text/javascript" src="shadowbox.js"></script>

It looks like you are missing the actual Shadowbox.js file. Try adding something like this below your shadowbox.css link def:

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