Rotator
Jump to navigation
Jump to search
Jquery, Mustache JSON Lynda Javascript and JSON Course
used the Jquery cycle plugin for the rotation Cycle Plugin
HTML and Javascript
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>JSON Carousel</title> <link href="https://fonts.googleapis.com/css?family=Libre+Baskerville|Wendy+One" rel="stylesheet"> <link rel="stylesheet" href="style.css"> </head> <body> <div id="speakerbox"> <a href="#" id="prev_btn">Prev«</a> <a href="#" id="next_btn">Next»</a> <div id="carousel"></div> </div> <script id="speakerstpl" type="text/template"> {{#speakers}} <div class="speaker"> <img src="../../../images/{{shortname}}.jpg" alt="{{name}}"> <h3>{{name}}</h3> <h4>{{reknown}}</h4> <p>{{bio}}</p> </div> {{/speakers}} </script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery.cycle/2.9999.8/jquery.cycle.all.min.js" type="text/javascript"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/mustache.js/0.7.0/mustache.min.js" type="text/javascript"></script> <script> $(function() { $.getJSON('../../../data.json', function(data) { var template = $('#speakerstpl').html(); var html = Mustache.to_html(template, data); $('#carousel').html(html); $('#carousel').cycle({ fx: 'fade', pause: 1, next: '#next_btn', prev: '#prev_btn', speed: 1000, timeout: 1000 }); // cycle }); // get json file }); </script> </body> </html>
CSS=
body { background: #eee7d5; font-family: 'Libre Baskerville'; } #speakerbox { width: 400px; margin: 0 auto; background: #93a1a1; padding: 1px 20px; border-radius: 10px; overflow: hidden; } #speakerbox h3, #speakerbox h4 { font-weight: normal; margin: 0; padding: 0; } #speakerbox h3 { font-size: 2em; line-height: .9em; font-family: 'Wendy One'; color: #115f79; } #speakerbox h4 { color: #973c26; font-weight: bold; margin-bottom: 5px; line-height: 1.2em; } #speakerbox img { float: right; margin-left: 10px; border-radius: 10px; width: 350px; } #speakerbox p { color: #1e3a40; font-size: .9em; } #speakerbox #next_btn, #speakerbox #prev_btn { background: #f5f5f5; padding: 5px 10px; border-radius: 10px; margin: 10px 0; display: inline-block; } #speakerbox a#next_btn, #speakerbox a#prev_btn { text-decoration: none; background: #d33682; color: #fff; }
JSON
{ "speakers": [{ "name": "Hotel Plant", "shortname": "01", "reknown": "Potted Hotel Plant", "bio": "Grows by the Hotel Window" }, { "name": "Robert Bacchas", "shortname": "02", "reknown": "Computer specialist", "bio": "persuing Science Degree" }, { "name": "Howler Monkey", "shortname": "03", "reknown": "Jumping in trees", "bio": "persuing Science Degree" }, { "name": "Palm Trees", "shortname": "04", "reknown": "Produce Coconuts", "bio": "Many palm trees at sunset, swaying in the breeze at Manuel Antonio, Costa Rica" } ] }