Skip to content

Instantly share code, notes, and snippets.

@russelllim22
Last active September 4, 2021 11:32
Show Gist options
  • Save russelllim22/4780cfc4b61a378deadf1335285cae87 to your computer and use it in GitHub Desktop.
Save russelllim22/4780cfc4b61a378deadf1335285cae87 to your computer and use it in GitHub Desktop.
function expandShrink(){
d3.select("#blueCircle")
.transition()
.duration(1600)
.attr("r", 50) // increase radius to 50px
.transition()
.duration(800)
.attr("fill", "yellow") // change to yellow (why not!)
.transition()
.duration(800)
.attr("r", 20) // shrink radius back to 20px
.attr("fill","lightblue") // change back to blue
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment