D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
james-johnstone
Full window
Github gist
Quotanator
<nav class='navbar navbar-default navbar-static-top'></nav> <div class='container' ng-app='app' ng-controller='quoteController'> <div class='row'> <div class='well well-lg text-center'> <h3>Random quote generator </h3> <h3><small> this project is a simple angular wrapper around a free quote api, clicking the refresh button will hit the api and return a new random quote. Big thank you to andruxnet for his free api <cite title="Source Title"><a href='https://market.mashape.com/andruxnet/random-famous-quotes' target='_open'> https://market.mashape.com/andruxnet/random-famous-quotes</a></cite> </small></h3> <button class='btn btn-info fa fa-refresh fa-2x' ng-click='newQuote()'></button> <button class='btn btn-info fa fa-twitter'ng-click='tweet()'> </button> </div> </div> <div class='row'> <div class='jumbotron'> <blockquote> <p class='lead'>{{quote.quote}}</p> <footer> {{quote.author}}<cite title="Source Title"></cite></footer> </blockquote> </div> </div> </div>