0

我使用引导程序,但我不知道如何将箭头更改为顶部。

任何人都可以技术我将箭头更改为顶部?

按照下面的截图。

这是引导程序的脚本。

var tour = new Tour({
    placement: "top",
    storage: false,
  steps: [
  {
    element: "#revision",
    title: "TEST",
    content: "TEST. . . "
  }
]});

tour.init();
tour.start();
4

3 回答 3

1

将您的 div 类更改为popover tour-tour fade bottom in,将您的位置更改topbottom

于 2015-06-24T02:05:34.850 回答
1

只需像这样添加“放置”属性:

steps: [
{
    element: "#revision",
    title: "TEST",
    content: "TEST. . . "
    placement: top
}

]

于 2016-05-31T11:49:42.533 回答
-1

创建这个 div<div class="arrow"></div>尝试在 bootstrap.css 文件中编辑该类的 CSS。

于 2015-06-24T02:02:12.920 回答