Сообщение от Batyabest
|
задержка не будет критична?
|
отрегулируйте сами сейчас 300ms
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title> - jsFiddle demo by werty1001</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<style type='text/css'>
a{color:#00F;border-bottom:dotted 1px blue;margin:0 10px}
a:hover{color:#333;border:#333;cursor:pointer}
.help{width:100px;height:100px;display:inline-block;background:#eee;padding:20px;margin:0 10px;opacity:0}
.help.active{opacity:1}
</style>
<script type='text/javascript'>
$(window).load(function() {
var id, pause = 300;
$("body").on("mouseenter", "[data-help]", function(b) {
id = $(this).data("help");
this.pause = pause;
$(this).stop(!0).animate({
pause: 0
}, pause, function() {
id == $(this).data("help") && ($(".help").removeClass("active"), $(id).addClass("active"))
})
}).on("mouseleave", "[data-help]", function(b) {
id = null
})
});
</script>
</head>
<body>
<a data-help="#log1">Ссылка №1</a>
<a data-help="#log2">Ссылка №2</a> <br /><br />
<div id="log1" class="help">Блок 1</div>
<div id="log2" class="help">Блок 2</div>
</body>
</html>