我正在玩Shadowbox,当用户登陆我的网站的索引页面时,我想启动它。

我可以像这样使用shadowbox:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>title</title>

<!-- Set paramètres pour le shadowbox (CSS, JS? . . .) -->
<link rel="stylesheet" type="text/css" href="shadowbox.css">
<script type="text/javascript" src="shadowbox.js"></script>
<script type="text/javascript">
Shadowbox.init();
</script>
</head>
<body>
<a href="image.png" rel="shadowbox" title="scronieunieu">My Image</a>
</body>
</html>


我试图做一个onload函数,但是它不起作用(我不能设置图片的链接吗?):

<script type="text/javascript" src="shadowbox.js"></script>
<script type="text/javascript">
window.addEvent('domready', function() {onPageLoad()});

window.onload = function(){
        Shadowbox.init();
    };
</script>
</head>


感谢帮助我,我对JS非常不满意...

最佳答案

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Clemz</title>

<!-- Set paramètres pour le shadowbox (CSS, JS? . . .) -->
<link rel="stylesheet" type="text/css" href="shadowbox/shadowbox.css">
<script type="text/javascript" src="shadowbox/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="image.png" alt="alt" />',
        player:     "html",
        title:      "Welcome dude",
        height:     502,
        width:      350
    });
};
</script>
</head>

<body>
<h1>Hello World</h1>
</body>
</html>

正常工作;-)

10-08 04:23