Tidy up formatting; proof-of-concept right side box

This commit is contained in:
Paul Gear
2013-11-19 08:57:43 +10:00
parent afd68473b4
commit a0979e85cd
10 changed files with 427 additions and 36 deletions

10
html/js/jquery-cycle-boxes.js vendored Normal file
View File

@ -0,0 +1,10 @@
// cycle between divs in a set, from: http://jquery.malsup.com/cycle/basic.html (see also http://jsfiddle.net/n1ck/4PvU7/)
$(document).ready(function() {
$('.boxes').cycle({
timeout: 5000,
speed: 1000,
random: 1,
pause: 1,
fx: 'scrollUp' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
});
});