Team:TU Munich/Templates/Beginn1
From 2010.igem.org
(Difference between revisions)
Hartlmueller (Talk | contribs) (Undo revision 91300 by Hartlmueller (Talk)) |
Hartlmueller (Talk | contribs) |
||
Line 1: | Line 1: | ||
<html> | <html> | ||
+ | <script type="text/javascript"> | ||
+ | |||
+ | $(document).ready(function(){ | ||
+ | |||
+ | $("img.barimage").animate({opacity: 0.25}, 0); | ||
+ | |||
+ | $("div.bar").mouseover(function(){ | ||
+ | $(this).find(".barimage").animate({opacity: 1}, 0); | ||
+ | }); | ||
+ | $("div.bar").mouseout(function(){ | ||
+ | $(this).find(".barimage").animate({opacity: 0.25}, 0); | ||
+ | }); | ||
+ | }); | ||
+ | </script> | ||
+ | |||
<style> | <style> |
Revision as of 23:23, 21 October 2010
|