A server creates and sends the webpage data, which is then rendered by a browser (Firefox, Chrome etc.)
R Shiny creates webpages!
HTML, or HyperText Markup Language, serves as the foundation for creating web pages. It employs elements enclosed in tags to structure content.
<!DOCTYPE html>
<html>
<head>Information about the Document</head>
<body>Actual Content</body>
</html>
Shiny abstracts away a lot of complexity for us!
We are still allowed to change the generated HTML, breaking free of predefined options in R Shiny.
sliderInput(
"dotsize",
label = "Dot Size",
min = 0.1,
max = 5,
value = 1,
step = 0.1
)
<div class="form-group shiny-input-container">
<label class="control-label" id="dotsize-label" for="dotsize">Dot Size</label>
<span class="irs irs--shiny js-irs-0 irs-with-grid">
<span class="irs">
<span class="irs-line" tabindex="0"></span>
<span class="irs-min" style="visibility: visible;">0.1</span>
<span class="irs-max" style="visibility: visible;">5</span>
<span class="irs-from" style="visibility: hidden;">0</span>
<span class="irs-to" style="visibility: hidden;">0</span>
<span class="irs-single" style="left: 18.8178%;">1</span>
</span>
<span class="irs-grid" style="width: 89%; left: 5.4%;">
<span class="irs-grid-pol" style="left: 0%"></span>
<span class="irs-grid-text js-grid-text-0" style="left: 0%; margin-left: -4.625%;">0.1</span>
<span class="irs-grid-pol small" style="left: 6.802721088435375%"></span>
<!-- Other grid spans omitted for brevity -->
<span class="irs-grid-text js-grid-text-10" style="left: 100%; visibility: visible; margin-left: -2.75%;">5</span>
</span>
<span class="irs-bar irs-bar--single" style="left: 0px; width: 21.8469%;"></span>
<span class="irs-shadow shadow-single" style="display: none;"></span>
<span class="irs-handle single" style="left: 16.3469%;"><i></i><i></i><i></i></span>
</span>
<input class="js-range-slider irs-hidden-input shiny-bound-input" id="dotsize" data-skin="shiny" data-min="0.1" data-max="5" data-from="1" data-step="0.1" data-grid="true" data-grid-num="9.8" data-grid-snap="false" data-prettify-separator="," data-prettify-enabled="true" data-keyboard="true" data-data-type="number" tabindex="-1" readonly="">
</div>
HTML alone is just colourless, static content. Therefore, HTML documents usually include CSS and JavaScript.
To apply CSS or JavaScript to HTML elements, they need to be found. This is accomplished with selectors.
<img src="..." id="uniqueId" class="class-one class-two">
Elements can have both an ID and classes. They can also be combined in a selector to be more specific.
img.class-one
Some common properties:
/* Comment */
tag {width: 200px}
#id {
color: #0077CC;
font-size: 12pt;
}
.class {
margin: 12pt;
background: #FFFFFF;
}
selector { property: value ; }
Colours are composed of red, green & blue (RGB)
HEX colours are RGB colours in the hexadecimal system, they start with a #
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 0 1 2 3 4 5 6 7 8 9 A B C D E F
Access your browser's developer tools now
[F12]
use the inspector to select the download button
and try to change a CSS style. Reloading the page will reset the styles.
aside .btn {
margin: 12px;
color: #000000;
}
# Check your working directory
tags$head(
includeCSS('style.css')
)
aside .btn {
margin: 12px;
color: #000000 !important;
}
The button is fixed ✓