View source: R/page_tutorials.R
page_tutorials | R Documentation |
Adds a set of instructions that will guide a user through a process.
page_tutorials(..., button = "Tutorials", id = NULL, class = NULL,
note = NULL)
... |
Lists specifying each tutorial, or a single list of such lists:
|
button |
Text to show a button to show the tutorials listing menu, or |
id |
Unique ID of the button element to be created. |
class |
Additional class names to add to the button element. |
note |
Text to display as a tooltip for the button. |
Tutorials take over control of the interface to walk the user through some process.
A character vector of the content to be added.
page_tutorials(
use_menu = list(
title = "Use Settings Menu",
steps = list(
list(
description = "Click on the settings button.",
focus = "#navbar_menu .nav-item:nth-child(3)",
after = "click"
),
list(
description = "Locate setting A.",
focus = "setting.a"
)
)
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.