I'm looking to create a dynamic revolving feature similar to what can be found at http://codepen.io/cassidoo/pen/MyaWzp. Instead of a fixed 5 cycles, I want to pull data from a JSON file. For instance, if my JSON contains various quotes, the content within the div would look like this:
<div class="quote">{{ parsed['quotes'] }}</div>
The challenge lies in creating an endlessly revolving mechanism without a set number of iterations. Essentially, my objective is to have an ongoing cycle that displays all quotes before starting over. Any suggestions on how to modify the provided link to achieve this?