User:Benjamin Miller
From OpenWetWare
<html>
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $('#side1').mouseover(function() { $('#side1').stop().animate({backgroundPosition: '0px 0px'}, 1000); }); $('#side1').mouseleave(function() { $('#side1').stop().animate({backgroundPosition: '-250px 0px'}, 1000); });
$('#side2').mouseover(function() {
$('#side2').stop().animate({backgroundPosition: '0px 0px'}, 1000);
});
$('#side2').mouseleave(function() {
$('#side2').stop().animate({backgroundPosition: '-250px 0px'}, 1000);
});
$('#side3').mouseover(function() {
$('#side3').stop().animate({backgroundPosition: '0px 0px'}, 1000);
});
$('#side3').mouseleave(function() {
$('#side3').stop().animate({backgroundPosition: '-250px 0px'}, 1000);
});
});
</script>
<style type="text/css">
- title {
width:900px; height:50px; position: relative; top: 0px; left: 0px; font-family: helvetica, arial, sans-serif; font-size: 1.5em; color: #333bbb;
- title.light {
font-color: #aaaaaa;}
#side1 {
width: 250px;
height: 100px;
background: url(http://openwetware.org/images/d/df/Imperialigemsideone.jpg) -250px 0px no-repeat;
position: absolute;
top: 50px;
left: 650px;}
- side2 {
width: 250px; height: 100px; background: url(http://openwetware.org/images/6/66/Imperialigemsidetwo.jpg) -250px 0px no-repeat; position: absolute; top: 200px; left: 650px;}
- side3 {
width: 250px; height: 100px; background: url(http://openwetware.org/images/e/ea/Imperialigemsidethree.jpg) -250px 0px no-repeat; position: absolute; top: 350px; left: 650px;} </style> </head> <body>
Imperial College London iGEM 2010 CSynBI
</body>
</html>
<html> </html>