我刚刚在我的网站上实现了 Angular Ui Tour ( https://github.com/benmarch/angular-ui-tour ),一切似乎都正常,除了滚动到打开的对话框。
我这样创建并开始了巡回演出:
uiTourService.createDetachedTour('myTour');
this._uiTourService.getTourByName('myTour').start();
游览步骤定义如下:
<div tour-step tour-step-title="Main Menu" tour-step-content="Navigate the site using this menu."
tour-step-order="0" tour-step-placement="bottom-left" tour-step-belongs-to="myTour"></div>
<p tour-step tour-step-title="second step" tour-step-content="this is the second step"
tour-step-order="1" tour-step-placement="bottom" tour-step-belongs-to="myTour"></p>
一切都正确显示,我还设法使用我的键盘导航(箭头键),设置useHotkeys
为 true。但是滚动的东西不起作用,即使我尝试scrollIntoView
手动设置为 true。
有谁知道,可能是什么问题?