fancybox 2.1.5和ie7的问题

时间:2013-09-29 09:36:44

标签: internet-explorer-7 fancybox

我在TYPO3 v6.1.5上使用了fancybox。一切都很好,只有ie7没有显示图像或iframe的任何弹出窗口。这是我的代码:

$(document).ready(function() {   
  $(".fancybox").fancybox({
    prevEffect : 'fade',
    nextEffect : 'fade',
    fitToView : false, // to show videos in their own size
    scrolling: 'no', // don't show scrolling bars in fancybox        
    minWidth : 450,
    maxWidth : 600,
    mouseWheel : 'true',
     beforeShow : function() {
       this.title = (this.title ? '' + this.title + '' : '') + ' (' + (this.index + 1) + '/' + this.group.length + ')';
    },
    helpers : {
      title : { type : 'outside' },
      overlay: { locked: false },
      // buttons : {}
    },
  });
  // iFrame Content
  $("a[target=fancybox]").fancybox({       
    // ohne untere Navigationszeile
    // autoSize : false,
    width : 600,
    height : 340,
    type : 'iframe',
    iframe: {
      scrolling : 'no',
      preload   : 'false'
    },      
    helpers : {
      title : { type : 'outside' },
      overlay: { locked: false },
      // buttons : {}
    },        
  });
});

doctype是:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html
     PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xml:lang="de" lang="de" xmlns="http://www.w3.org/1999/xhtml">

感谢任何提示 托马斯

0 个答案:

没有答案