Trying to add a twitter share button to my navbar. The closet I can get is to place it in the header, but this leaves too much white space. I would like it to go in the top right of the navbar, but I cannot figure out which (if any) is the appropriate argument in the navbarPage
function to use.
library(shiny)
runApp(launch.browser = TRUE,
list(
ui = shinyUI(navbarPage(
title=" ", fluid=FALSE,
header = HTML("<div style='float:right'>
<a href='https://twitter.com/share'
class='twitter-share-button'
align='middle'
data-url='www.mywebsite.com'
data-text='Visit www.mywebsite.com'
data-size='large'>Tweet
</a>
<script>!function(d,s,id){
var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';
if(!d.getElementById(id)){
js=d.createElement(s);
js.id=id;
js.src=p+'://platform.twitter.com/widgets.js';
fjs.parentNode.insertBefore(js,fjs);
}
}(document, 'script', 'twitter-wjs');
</script>
</div>"),
tabPanel(
title = "Data",
h1("Data"),
br(),
tabsetPanel(
type = "tabs",
tabPanel("Selection"),
tabPanel("View")
)
),
tabPanel(
title = "Plots"
)
)),
server = function(input, output) {
}
))
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…