Сообщение от Dudo4nick
|
Кто-нибудь может мне помочь?
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
#test {
border: 1px solid;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$("#test").mouseover(function() {
$(this).animate({ opacity: "0" }, 700);
});
$("#test").mouseout(function() {
$(this).stop().animate({ opacity: "1" }, 1000);
});
});
</script>
</head>
<body>
<p id='test'>Test</p>
</body>
</html>