将鼠标悬停在单词上时在框中显示文本

Roc*_*cer 7 html r r-markdown

我想将鼠标悬停在单词上时显示 R markdown 文件中单词的定义。

对于链接,可以这样做:[I'm an inline-style link with title](https://www.google.com "Google's Homepage")将鼠标悬停在I'm an inline-style link with title文本上时Google's Homepage会弹出。但是,我想对一个单词执行相同的操作,并在没有链接的框中给出该单词的定义。

就像是:[word]("Definition of word that pops up in a box upon hovering")。这可能吗?

Ian*_*ell 6

一种选择是tippy套餐。

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library(tippy)
```

This is a 
```{r echo = FALSE}
tippy("word.", tooltip = "Definition of word that pops up in a box upon hovering")
```
I would like to know its definition.
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述


M. *_*eil 6

在这里找到了解决方案

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

# Introduction to tooltip or popups

This is a <abbr title="Definition of word that pops up in a box upon hovering">word.</abbr> I would like to know its definition.
Run Code Online (Sandbox Code Playgroud)

如果能够更改工具提示就好了。

该网页可以帮助您自定义标签(Abbreviate Your Code with HTML abbr Tag)。

我也在寻找一种拥有维基百科悬停框样式的方法。

同样,当您将鼠标悬停在文本上并根据需要更改它时,您可以避免出现“默认”框:此网站提供了修改“工具提示”框的示例。