Difference between revisions of "Template:Team:TU Eindhoven/Timeline Script"
Line 2: | Line 2: | ||
$(document).ready(function() { | $(document).ready(function() { | ||
+ | |||
+ | var eventInhoud ['We','zijn','echt','best','wel','fucked...']; | ||
for ( index = 1; index <= 11; index++){ | for ( index = 1; index <= 11; index++){ | ||
Line 16: | Line 18: | ||
// hier komt de tekst voor je event (te zien als je hovert) | // hier komt de tekst voor je event (te zien als je hovert) | ||
+ | $(eventInhoud(idnr)).appendTo("#event") | ||
} | } | ||
</html> | </html> |
Revision as of 17:36, 18 September 2015
$(document).ready(function() { var eventInhoud ['We','zijn','echt','best','wel','fucked...']; 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) { // hier komt de tekst voor je event (te zien als je hovert) $(eventInhoud(idnr)).appendTo("#event") }