Difference between revisions of "Template:Team:TU Eindhoven/Timeline Script"
Line 15: | Line 15: | ||
function showEvent(idnr) { | function showEvent(idnr) { | ||
− | var color = '#11' + idnr.toString() + ' | + | var color = '#' idnr.toString() + '11' + idnr.toString() + '11'; |
$("#event").css({'background-color':color}) | $("#event").css({'background-color':color}) | ||
} | } | ||
</html> | </html> |
Revision as of 14:15, 18 September 2015
$(document).ready(function() { for ( index = 1; index <= 11; index++){ $("
").appendTo("#timeline").css({'float':'left','width':'97px','height':'30px'}); } $(".timeBlock").hover(function(){ showEvent( $(this).attr('id').match(/\d+/) ) },function(){ }); }); function showEvent(idnr) { var color = '#' idnr.toString() + '11' + idnr.toString() + '11'; $("#event").css({'background-color':color}) }