Is there any way to implement jQuery's Quicksand plugin in Angular? Perhaps there is an implementation but I can't seem to find it.
Perhaps a strategy to do it would help me because quicksand takes a list and then receives as a parameter the new list, but with Angular's way of re-rendering data I have no idea how to do that.
I implemented something similar using a masonry directive + ng-animate for enter/leave animations, here's a CSS animation only demo (with chrome vendor prefixed CSS):
http://jsfiddle.net/g/3SH7a/
The directive:
You need to add a directive to do this.
So with just jQuery, you'd have:
JS
HTML
With Angular you could do:
JS
HTML
Note, this is untested but should be ok.