Hello -
I am trying to animate a multiple selection.
The scenario is:
the user query multiple nodes ids: (e.g: 26, 123, 444) and the I make the selection like this:
for(var i=0; i<ids.length; i++) {
cy.nodes("[id=" + (+ids[i]) + "]").select();
}
Question 1) is using for the smartest way to select multiple node ?
Question 2) can can I animate the selection ? (i.e. like the .js example, I would like to animate the selection, then the user will have a better sense of where is the selected nodes)
Thank you for your time.
Cheers.,