Title: | Scroll Back to Top Icon in Shiny and R Markdown |
---|---|
Description: | Add a scroll back to top 'Font Awesome' icon <https://fontawesome.com/> in 'rmarkdown' documents and 'shiny' apps thanks to 'jQuery GoTop' <https://scottdorman.blog/jquery-gotop/>. |
Authors: | Félix Luginbuhl [aut, cre] |
Maintainer: | Félix Luginbuhl <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.1.4 |
Built: | 2024-11-11 06:00:14 UTC |
Source: | https://github.com/lgnbhl/gotop |
Get gotop html dependencies.
html_dependencies_gotop(use_cdn = TRUE)
html_dependencies_gotop(use_cdn = TRUE)
use_cdn |
boolean. TRUE to use a Content Delivery Network (CDN), true by default, or false to use locally stored files. |
Add scroll up icon
use_gotop( src = "fas fa-chevron-up", width = 45, opacity = 0.5, place = "right", color = "", appear = 200, scrolltime = 800, fadein = 500, fadeout = 500, marginX = 2, marginY = 2, container = "", zIndex = 9, use_cdn = TRUE )
use_gotop( src = "fas fa-chevron-up", width = 45, opacity = 0.5, place = "right", color = "", appear = 200, scrolltime = 800, fadein = 500, fadeout = 500, marginX = 2, marginY = 2, container = "", zIndex = 9, use_cdn = TRUE )
src |
A string. The CSS classes used to display the gotop icon. |
width |
An integer. The width of the gotop icon. |
opacity |
decimal Sets the transparency level for the gotop icon, where 1 is not transparent at all, 0.5 is 50 percent see-through and 0 is completely transparent. |
place |
A string. The location where the gotop icon will be shown. Valid values are 'right' or 'left'. |
color |
A string. The color of the selected the gotop icon. |
appear |
An integer. The amount of pixels the page must be scrolled down before the gotop icon is displayed. |
scrolltime |
An integer. A number determining how long the animation will run when scrolling to the top of the page. |
fadein |
An integer. A number determining how long the animation will run when fading in to opaque. |
fadeout |
An integer. A number determining how long the animation will run when fading out to transparent. |
marginX |
An integer. The percentage amount indicating how far away the gotop icon is from the bottom, left, or right, depending on the value of place. |
marginY |
An integer. The percentage amount indicating how far away the gotop icon is from the top or bottom, depending on the value of place. |
container |
A string. The HTML element to which the scroll function will be attached. If no value is given, then the scroll function will be attched to the window. |
zIndex |
An integer. The z-index value. |
use_cdn |
boolean. TRUE to use a Content Delivery Network (CDN), true by default, or false to use locally stored files. |
Javascript code initializing GoTop with dependencies
use_gotop()
use_gotop()