0

我正在使用fancybox 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 回答