Biomod/2013/Todai/Experiment/Protocols
From OpenWetWare
Jump to navigationJump to search
<html> <head>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> <script type="text/javascript">
$(function() {
var rotate = function(logo, angle) {
logo.css({
"transform" : "rotate("+angle+"deg)"
});
}
$(window).scroll(function(){
rotate($(".logo"), $(window).scrollTop()*0.2);
})
}); </script>
<style> .logo { position: fixed; left: 50%; top: 150px; margin-left: -185px; height: 370px; width: 370px; } </style>
</head>
<body>
<img src="http://openwetware.org/images/8/8c/Return-UT.png" width="370" height="370">
</body> </html>