1

こんにちは、シャドー ボックスを使用しています。すべて問題なく動作していますが、1 つのページに 2 つの用途があります。

ギャラリーではなく iframe から次と前のボタンを削除するにはどうすればよいですか

Shadowbox.init({
    displayCounter: false,
    continuous: true <- need to disable for iframe only
});

iframe:

<a rel="shadowbox[contact];width=420;height=520" href="contact.php?profileID=">Click here</a>

ギャラリー

<a rel="shadowbox[trader]" href="<?php echo $images[0]; ?>">Click here</a>
<a rel="shadowbox[trader]" href="<?php echo $images[1]; ?>">Click here</a>
<a rel="shadowbox[trader]" href="<?php echo $images[2]; ?>">Click here</a>
4

1 に答える 1

0

Did you take a look into the docs and the usage section? You don't need multiple scripts - that would only cause problems and is completely unnecessary.

Instead, leave the init() function alone and use the setup() function. Something like this should work (for this snippet to work you need the according class on you links):

Shadowbox.init({
    displayCounter: false
});

Shadowbox.setup("a.noniframe", {
      continuous: true
});

Shadowbox.setup("iframe a", {
      continuous: false
});
于 2012-11-07T12:33:09.000 に答える