Сообщение от esergion
|
Но данный код не работает:
$(document).ready(function(){
var MenuShowTimer;
$('header nav > div > div').hover(
function(e) {
MenuShowTimer=setTimeout($(this).children('.hide').fadeIn(),1000);
},
function(e) {
clearTimeout(MenuShowTimer);
$(this).children('.hide').fadeOut();
}
);
});
|
Это не удивительно...
Как вариант
<!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">
body > div {
float: left;
margin-right: 10px;
}
div > div {
display: none;
}
</style>
<script type="text/javascript">
$(function(){
var MenuShowTimer;
$('a').hover(
function(e) {
MenuShowTimer=setTimeout(
(function (Obj){
return function () {
$(Obj).next().fadeIn();
};
})(this)
,1000)}
,
function(e) {
clearTimeout(MenuShowTimer);
$(this).next().fadeOut();
}
);
});
</script>
</head>
<body>
<div>
<a href='#'>Item 0</a>
<div>Text 0</div>
</div>
<div>
<a href='#'>Item 1</a>
<div>Text 1</div>
</div>
<div>
<a href='#'>Item 2</a>
<div>Text 2</div>
</div>
</body>
</html>