Team:Dundee/HumanPractice/Comic
From 2013.igem.org
(Difference between revisions)
Kyleharrison (Talk | contribs) |
Kyleharrison (Talk | contribs) |
||
Line 43: | Line 43: | ||
/* Keyboard Hotkeys */ | /* Keyboard Hotkeys */ | ||
- | $(document).bind('keyup', 'right', | + | $(document).bind('keyup', 'right', incrementComicCounter()); |
- | $(document).bind('keyup', 'left' , | + | $(document).bind('keyup', 'left' , decrementComicCounter()); |
- | + | ||
- | + | ||
document.getElementById("comicpage").style.height="100%"; | document.getElementById("comicpage").style.height="100%"; | ||
Line 92: | Line 91: | ||
<script type="text/javascript"> | <script type="text/javascript"> | ||
var counter = 0; | var counter = 0; | ||
- | + | var comicPages =8; | |
- | + | ||
- | |||
function incrementComicCounter(){ | function incrementComicCounter(){ | ||
var comicpage = document.getElementById("comicpage"); | var comicpage = document.getElementById("comicpage"); | ||
- | if(counter>= | + | if(counter>=comicPages){ |
counter=0; | counter=0; | ||
} else { | } else { | ||
Line 111: | Line 108: | ||
} | } | ||
- | |||
- | |||
function decrementComicCounter(){ | function decrementComicCounter(){ | ||
Line 119: | Line 114: | ||
if(counter<=0){ | if(counter<=0){ | ||
- | counter= | + | counter=comicPages; |
} else { | } else { | ||
counter--; | counter--; |
Revision as of 17:09, 5 September 2013
University of Dundee 2013 iGEM team presents...
Viewing Page : 1
Download Our Comic Now!
Our comic is available for download, free of charge. Download a copy of our PDF down by opening this link and selecting download in Acrobat Reader. Afterwards you can read it on your computer, tablet device, or even mobile phone.