[html]<script src="/js/google.js"></script>
<style>
#litak {position:fixed; width:10px; height:10px; background:#fdd;}
</style>
<script>
$("html").click(function(e){
$("#litak").animate({top:e.pageY, left:e.pageX}, 500);
});
</script>
<div id="litak"></div>
[/html]
Код:
<script src="/js/google.js"></script> <style> #litak {position:fixed; width:10px; height:10px; background:#fdd;} </style> <script> $("html").click(function(e){ $("#litak").animate({top:e.pageY, left:e.pageX}, 500); }); </script> <div id="litak"></div>
- Подпись автора