├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── scrollytags.R └── scrollytell.R ├── README.Rmd ├── README.md ├── appveyor.yml ├── inst └── htmlwidgets │ ├── lib │ ├── d3-4.13.0 │ │ └── d3.min.js │ ├── graph-scroll-1.0.2 │ │ ├── graph-scroll.css │ │ └── graph-scroll.js │ └── sticky-fill-2.1.0 │ │ └── stickyfill.min.js │ ├── scrollytell.js │ └── scrollytell.yaml ├── man ├── scrolly_container.Rd ├── scrolly_graph.Rd ├── scrolly_section.Rd ├── scrolly_sections.Rd └── scrollytell.Rd ├── scrollytell.Rproj └── test └── shiny └── app.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/scrollytags.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/R/scrollytags.R -------------------------------------------------------------------------------- /R/scrollytell.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/R/scrollytell.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/appveyor.yml -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/d3-4.13.0/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/inst/htmlwidgets/lib/d3-4.13.0/d3.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/graph-scroll-1.0.2/graph-scroll.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/inst/htmlwidgets/lib/graph-scroll-1.0.2/graph-scroll.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/graph-scroll-1.0.2/graph-scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/inst/htmlwidgets/lib/graph-scroll-1.0.2/graph-scroll.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/sticky-fill-2.1.0/stickyfill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/inst/htmlwidgets/lib/sticky-fill-2.1.0/stickyfill.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/scrollytell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/inst/htmlwidgets/scrollytell.js -------------------------------------------------------------------------------- /inst/htmlwidgets/scrollytell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/inst/htmlwidgets/scrollytell.yaml -------------------------------------------------------------------------------- /man/scrolly_container.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/man/scrolly_container.Rd -------------------------------------------------------------------------------- /man/scrolly_graph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/man/scrolly_graph.Rd -------------------------------------------------------------------------------- /man/scrolly_section.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/man/scrolly_section.Rd -------------------------------------------------------------------------------- /man/scrolly_sections.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/man/scrolly_sections.Rd -------------------------------------------------------------------------------- /man/scrollytell.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/man/scrollytell.Rd -------------------------------------------------------------------------------- /scrollytell.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/scrollytell.Rproj -------------------------------------------------------------------------------- /test/shiny/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statistiekcbs/scrollytell/HEAD/test/shiny/app.R --------------------------------------------------------------------------------