Skip to content

Instantly share code, notes, and snippets.

View JSDiamond's full-sized avatar

Jeremy Scott Diamond JSDiamond

  • NYC
View GitHub Profile
@JSDiamond
JSDiamond / README.md
Last active June 16, 2019 03:54
Thumbnail image transitions

Simple CSS3 image transitions

With some help from d3

@JSDiamond
JSDiamond / timeline_basic.txt
Last active September 2, 2015 13:57
Render Hillary/Women's Movement timeline sections with D3
queue()
.defer(d3.csv, "data/timeline.csv")
.await(function(err, timelinedata){
renderTimeline(timelinedata)
})
function renderTimeline(timelinedata){
//Make a section tag for each year in the timeline
var sections = d3.select('#timelinebox')