Recently, I've been thinking about creating a Firebase database to store quotes. My vision is to structure the data in a way that each quote object looks like this:
quotes:{
ObjectId1:{
title: "When there's a will there's a way"
},
ObjectId2:{
title: "When there's a will there's a way"
}
}
I am keen on displaying these quotes, but in a randomized fading manner. Using ng-repeat will probably display all quotes in a linear sequence. Do you have any recommendations for a library that could help me achieve this effect? Thank you in advance for your advice.