turn step zero aqua
Mon Feb 26 2024 19:47:00 GMT+0000 (Coordinated Universal Time)
Saved by
@skatzy
// Entering Step Zero
d3.select("#step-zero").on('stepin',function(e) {
console.log("We've arrived at STEP ZERO")
d3.select("#step-zero").style('background-color', 'aqua')
d3.select("#bubblePolygon").classed('hidden', true)
})
// Leaving Step Zero
d3.select("#step-zero").on('stepout',function(e) {
console.log("We've left STEP ZERO")
// d3.select("#step-zero").style('background-color', 'aqua')
})
content_copyCOPY
Comments