Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (5.5%) to scientific vocabulary
Keywords
Repository
Dynamic grid layouts of images.
Basic Info
Statistics
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
- Releases: 0
Topics
Metadata Files
README.md
freewall
Dynamic grid layouts of images.

In a Shiny app, the items of a 'freewall' grid have the class ID-item where
ID is the id you use in the freewallOutput function. Here is an example of
a Shiny app with a CSS3 animation:
```r library(shiny) library(freewall)
css <- "
fw {
margin: 15px;
}
@keyframes start { from { transform: scale(0); } to { transform: scale(1); } }
@-webkit-keyframes start { from { -webkit-transform: scale(0); } to { -webkit-transform: scale(1); } }
fw .fw-item[data-state='init'] {
display: none; }
fw .fw-item[data-state='start'] {
display: block; animation: start 1s; -webkit-animation: start 1s; }
fw .fw-item[data-state='move'] {
transition: top 1s, left 1s, width 1s, height 1s; -webkit-transition: top 1s, left 1s, width 1s, height 1s; } "
ui <- fluidPage( tags$head(tags$style(HTML(css))), freewallOutput("fw") )
server <- function(input, output, session) { output[["fw"]] <- renderFreewall({ freewall( nature(), backgroundImages = TRUE, widths = 200, heights = 200, cellW = 200, cellH = 200, animate = FALSE, delay = 50 ) }) }
shinyApp(ui, server) ```
Owner
- Login: stla
- Kind: user
- Repositories: 244
- Profile: https://github.com/stla
GitHub Events
Total
Last Year
Issues and Pull Requests
Last synced: 12 months ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- cran 175 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 1
- Total maintainers: 1
cran.r-project.org: freewall
A Wrapper of the JavaScript Library 'Freewall'
- Homepage: https://github.com/stla/freewall
- Documentation: http://cran.r-project.org/web/packages/freewall/freewall.pdf
- License: GPL-3
-
Latest release: 1.0.0
published about 2 years ago
Rankings
Maintainers (1)
Dependencies
- htmltools * imports
- htmlwidgets * imports
- jquerylib * imports