Skip to content

Tour 漫游式引导 v1.7.0

用于分步引导用户了解产品功能的气泡组件。 用来引导用户并介绍产品

基础用法

打开引导
上传保存...

位置

改变引导相对于目标的位置,共有 12 种位置可供选择。

信息

placement:
top-start/top/top-end/right-start/right/right-end/bottom-start/bottom/bottom-end/left-start/left/left-end

打开引导

可用的 css 变量

点击展开
css
:host {
  --ivy-tour-width: 420px;
  --ivy-tour-padding-primary: 16px;
  --ivy-tour-font-line-height: var(--ivy-font-line-height-primary);
  --ivy-tour-title-font-size: 16px;
  --ivy-tour-title-text-color: var(--ivy-text-color-primary);
  --ivy-tour-title-font-weight: 400;
  --ivy-tour-font-size: 14px;
  --ivy-tour-color: var(--ivy-text-color-primary);
  --ivy-tour-bg-color: #ffffff;
  --ivy-tour-border-radius: var(--ivy-border-radius);
  --ivy-tour-border-color: var(--ivy-border-color-lighter);
}

Tour Props

参数说明类型可选值默认值
steps内容Array<Step>--
placement位置Stringenumtop

Step

参数说明类型可选值默认值
target目标元素string | HTMLElement--
title标题string--
content内容string--
allowHtml内容可以是 html 字符串string--
placement位置Stringenumtop

Tour Events

事件名称说明类型
change引导步骤发生变化(index:number) => void
close关闭引导时的回调函数() => void
finish引导完成时的回调() => void

Tour Methods

方法名说明类型
open显示引导层() => void