freewall

Dynamic grid layouts of images.

https://github.com/stla/freewall

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

javascript r
Last synced: 10 months ago · JSON representation

Repository

Dynamic grid layouts of images.

Basic Info
  • Host: GitHub
  • Owner: stla
  • Language: JavaScript
  • Default Branch: main
  • Homepage:
  • Size: 16.2 MB
Statistics
  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
javascript r
Created over 2 years ago · Last pushed about 2 years ago
Metadata Files
Readme

README.md

freewall

R-CMD-check <!-- badges: end -->

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

GitHub Events

Total
Last Year

Committers

Last synced: over 1 year ago

All Time
  • Total Commits: 21
  • Total Committers: 1
  • Avg Commits per committer: 21.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 21
  • Committers: 1
  • Avg Commits per committer: 21.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
stla l****p@y****r 21

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'

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 175 Last month
Rankings
Dependent packages count: 27.8%
Dependent repos count: 35.7%
Average: 49.5%
Downloads: 84.9%
Maintainers (1)
Last synced: 11 months ago

Dependencies

DESCRIPTION cran
  • htmltools * imports
  • htmlwidgets * imports
  • jquerylib * imports