有一个恼人的效果,在0.12.0的启动带巡演时,激活背景。它可以工作,但是一旦您单击“下一步”,会后台删除片刻,然后再次显示正在眨眼。
任何人都有办法禁用此行为或修复此行为?
这是最后一个版本..。现在它已经一岁了。
发布于 2018-09-22 13:44:31
我做了件有用的事。在“隐藏步骤”函数中,我更改了条件,删除了最后一个或语句:
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);
}
}https://stackoverflow.com/questions/52445456
复制相似问题