【发布时间】:2014-12-23 23:43:48
【问题描述】:
我已将 Shadowbox 添加到我的 HTML 页面以在页面加载时弹出图像。页面加载和图像弹出窗口出现并显示“正在加载”并且图片不显示。我使用的图片只有 64kb
<!--shadowbox-->
<link rel="stylesheet" type="text/css" href="css/shadowbox.css">
<script type="text/javascript" src="js/shadowbox.js"></script>
<script type="text/javascript">
Shadowbox.init({
// skip the automatic setup
skipSetup: true
});
window.onload = function() {
// open ASA the window loads
Shadowbox.open({
content: '<img src="images/Xmas-Mobarak.jpg" alt="alt" />',
player: "img",
title: "Merry Christmas",
height: 313,
width: 500
});
};
</script>
【问题讨论】: