Bootstrap 导览背景在步骤之间闪烁

Bootstrap tour backdrop blinking between steps

Bootstrap 游览的 v0.12.0 中激活背景幕时有一个烦人的效果。 它有效,但是一旦您单击下一步,背景会消失片刻然后再次出现 闪烁。

有人有办法停用此行为或解决此问题吗?

这是最后一个版本...现在已经 1 岁了。

好吧,我做了一些有用的事情。 在 "hidestep" 函数中,我更改了条件,删除了最后一个 or 语句:

if (step.backdrop) {
    next_step = (iNext != null) && _this.getStep(iNext);

    if (!next_step || !next_step.backdrop /*|| next_step.backdropElement !== step.backdropElement*/) {
              _this._hideOverlayElement(step);
       }
 }

就这样结束了:

if (step.backdrop) {
        next_step = (iNext != null) && _this.getStep(iNext);

        if (!next_step || !next_step.backdrop ) {
                  _this._hideOverlayElement(step);
           }
     }