0

ファンシーボックス iframe を使用してコンテンツを表示していますが、ページをスクロールするたびに、iframe がページの中央にありません。スクロール時にiframeが常にページの中央になるようにしたい。このスクリプトを使用しています。

$("#various2").fancybox({
  width: 520,
  height: 550,
  autoScale: false,
  transitionIn: 'none',
  transitionOut: 'none',
  type: 'iframe',
  scrolling: 'no',
  centerOnScroll: 'true',
  autoCenter: 'true'
});

誰でも私を助けることができますか?

前もって感謝します

4

1 に答える 1

2

わかりませんが、コードを見ると、ブール値を文字列として入力していることがわかります-

$("#various2").fancybox({
  width: 520,
  height: 550,
  autoScale: false,
  transitionIn: 'none',
  transitionOut: 'none',
  type: 'iframe',
  scrolling: 'no',
  centerOnScroll: true, // and not 'true',
  autoCenter: true // and not 'true'
});
于 2012-08-30T11:20:11.310 に答える