use_tippy_funcs {tippy}R Documentation

Use tippy

Description

Dynamically use tippy.

Usage

use_tippy()

call_tippy(target, ...)

tippy_class(class, ...)

Arguments

target

Target element.

...

Any option from the official documentation.

class

Class of elements to apply tooltip to.

Functions

See Also

official documentation

Examples

if(interactive()){
library(shiny)

shinyApp(
  ui = fluidPage(
    p("Some text", class = "tooltip"),
    p("Some text", class = "tooltip"),
    p("Some text", class = "tooltip"),
    p("Some text", class = "tooltip"),
    p("Some text", class = "tooltip"),
    p("Some text", class = "tooltip"),
    tippy_class("tooltip", content = "Hi!") # all elements with class
 ),
 server = function(input, output) {}
)
}


[Package tippy version 0.1.0 Index]