【问题标题】:Fancybox Iframe not in the centre of the pageFancybox iframe 不在页面中心
【发布时间】:2012-08-30 05:59:01
【问题描述】:

我使用fancybox iframe 来显示内容,但是每次滚动页面时,iframe 都不在页面的中心。我希望 Iframe 在滚动时始终位于页面中心。我正在使用这个脚本。

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

谁能帮帮我。

提前致谢

【问题讨论】:

  • 某些 CSS 规则会覆盖fancybox 的规则?
  • "How-to" 取决于您使用的 fancybox 版本,因为在您的脚本中包含了彼此不兼容的 v1.3.x 和 v2.x 的 API 选项。所以 64,000 美元的问题是:您使用的是哪个 fancybox 版本?

标签: php iframe fancybox


【解决方案1】:

我不确定,但是通过查看您的代码,我可以看到您已将布尔值键入为字符串 -

$("#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'
});

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2015-01-31
    • 1970-01-01
    • 1970-01-01
    • 2012-09-18
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多