nivo滑块 - 未出现在Internet Explorer中

时间:2010-09-07 17:08:00

标签: internet-explorer

前端设计是我的弱点,所以我有点迷失。

这个网站(www.myfriendshotel.com)的nivo滑块我在firefox上工作得很好,但在ie中没有。 谷歌为什么它不起作用的唯一原因是样式没有正确关闭,但我检查了所有这些。

任何想法?

谢谢,Alex

3 个答案:

答案 0 :(得分:3)

IE可能正在切换到兼容模式..

我对Nivo有这个问题......

禁用兼容模式:

<meta http-equiv="X-UA-Compatible" content="IE=edge">

答案 1 :(得分:0)

只是关闭它。

解决方案太干净所有html因为不必要的标签挥之不去,并且还要清理所有的js然后一切都很好了!

答案 2 :(得分:0)

使用以下命令更改nivo滑块CSS:

.nivoSlider a.nivo-imageLink {

      position:absolute;
      top:0px;
      left:0px;
      width:100%;
      height:100%;
      border:0;
      padding:0;
      margin:0;
      z-index:6000;
      display:none;
      /*patch IE10*/
      background:white;
      filter: alpha(opacity=0);
      opacity: 0; 

}
相关问题