Difference between revisions of "Template:Team:TU Eindhoven/Timeline Script"

Line 3: Line 3:
 
$(document).ready(function() {
 
$(document).ready(function() {
  
var eventInhoud = ['We','zijn','echt','best','wel','fucked...'];
+
var eventInhoud = ['Designing of the desired constructs','Writing the protocols and gathering lab necessities','Gibson Assembly of LgBit & SmBit seperately in the pETDuet-1 vector','Gibson Assembly of LgBit & SmBit combined in the pETDuet-1 vector','Verifying sequences of the desired constructs','Gibson Assembly of Nanoluc & mNeongreen seperately in the pETDuet-1 vector (BRET system),'Gibson Assembly of Nanoluc & mNeongreen combined in the pETDuet-1 vector (BRET system)','Verifying sequences of the desired constructs','Verifying click reactions of seperate constructs with FACS', 'verifying fluorescense of seperate constructs','verifying bioluminescese of seperate constructs, the BRET system and NanoBit'];
  
 
for ( index = 1; index <= 11; index++){
 
for ( index = 1; index <= 11; index++){

Revision as of 19:04, 18 September 2015

$(document).ready(function() { var eventInhoud = ['Designing of the desired constructs','Writing the protocols and gathering lab necessities','Gibson Assembly of LgBit & SmBit seperately in the pETDuet-1 vector','Gibson Assembly of LgBit & SmBit combined in the pETDuet-1 vector','Verifying sequences of the desired constructs','Gibson Assembly of Nanoluc & mNeongreen seperately in the pETDuet-1 vector (BRET system),'Gibson Assembly of Nanoluc & mNeongreen combined in the pETDuet-1 vector (BRET system)','Verifying sequences of the desired constructs','Verifying click reactions of seperate constructs with FACS', 'verifying fluorescense of seperate constructs','verifying bioluminescese of seperate constructs, the BRET system and NanoBit']; 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-1] + '

').appendTo("#event") $('#eventsContainer').css({'margin-left':((idnr-2)*104+16).toString() + 'px'}); } });