intro.js在具有固定元素的mozilla上运行不正常

时间:2016-07-20 09:48:02

标签: firefox mozilla intro.js

我在我的网站上使用intro.js作为教程。它在chrome上运行良好,但现在我在Mozilla Firefox中尝试了,并且当突出显示时窗口正在移动。任何人都知道为什么会这样吗?

编辑:

我修复了mozilla firefox,更新了css,但是对于IE它还没有工作

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .introjs-fixParent {
        position: absolute !important;
    }
}
.introjs-fixParent {
    z-index: auto !important;
    opacity: 1.0 !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
}

1 个答案:

答案 0 :(得分:0)

我解决这个问题的方法是编辑orignal intro.js css:

**这适用于mozilla firefox和IE

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .introjs-fixParent {
        position: relative !important;
    }
}

.introjs-fixParent {
    z-index: auto !important;
    opacity: 1.0 !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
}