62,248
社区成员




<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="jquery-1.3.2.min.js" type="text/javascript"></script>
</head>
<body style="height:3000px;">
<div style="width:80px; height:120px; border:solid 5px black; position:fixed; right:-50px; top:200px;"></div>
<script type="text/javascript">
$(document).ready(function () {
$("div").bind("mouseover", function () {
$(this).animate({ "right": "0" },400);
}).bind("mouseout", function () {
$(this).animate({ "right": "-50" }, 400);
});
});
</script>
</body>
</html>