Last active
September 4, 2021 11:32
-
-
Save russelllim22/4780cfc4b61a378deadf1335285cae87 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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