Team:UCSF/animation
From 2010.igem.org
(Difference between revisions)
Line 1: | Line 1: | ||
<html> | <html> | ||
- | + | ||
- | + | <head> | |
- | < | + | |
<script type="text/javascript"> | <script type="text/javascript"> | ||
- | function changeImg(img, newimg) { | + | |
+ | function mouseOver() | ||
+ | { | ||
+ | document.getElementById("b1").src ="https://static.igem.org/mediawiki/2010/5/5b/UCSF-SF-GGB-curled.jpg"; | ||
+ | } | ||
+ | |||
+ | function mouseOut() | ||
+ | { | ||
+ | document.getElementById("b1").src ="https://static.igem.org/mediawiki/2010/d/dc/UCSF-SF-GGB.jpg"; | ||
+ | } | ||
+ | |||
+ | function changeImg(img, newimg) | ||
+ | { | ||
img.src = newimg; | img.src = newimg; | ||
} | } | ||
+ | |||
</script> | </script> | ||
+ | </head> | ||
+ | |||
+ | <body> | ||
+ | <img border="0" alt="Click to watch the ninja move!" src="https://static.igem.org/mediawiki/2010/d/dc/UCSF-SF-GGB.jpg" id="b1" onmouseover="mouseOver()" onmouseout="mouseOut()" onclick="changeImg(this, 'https://static.igem.org/mediawiki/2010/b/b9/UCSF_Syn_Killers_Animation.gif')" height="275" align="center"/> | ||
+ | </body> | ||
+ | |||
</html> | </html> |
Revision as of 03:00, 20 October 2010