-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
29 lines (29 loc) · 924 Bytes
/
ui.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Define UI for application that draws a histogram
ui <- fluidPage(
htmltools::htmlDependency("jquery", "3.5.1",
src = c(href = "https://code.jquery.com/"),
script = "jquery-3.5.1.min.js"),
useShinyjs(),
tags$head(
tags$link(rel = "stylesheet", type = "text/css", href = "MODEstyle.css")
),
div(class = "title-panel",
HTML('<p><img src="mode_icon.png" width=150></p><p><span style="font-size: 22px;"> Trelliscope visualization of omics data and statistics</span></p>')
),
div(
id = "loading-gray-overlay",
class = "loading-mask",
div(class = "fadein-out busy relative-centered", style = "font-size:xx-large", "Loading app resources...")
),
fluidRow(
id = "trelliscope_fluidRow",
column(
width = 3,
front_page_left_collapse()
),
column(
width = 9,
front_page_display_panel(),
)
)
)