我有以下代码:
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script>
$(document).ready(function() {
// hides the slickbox as soon as the DOM is ready (a little sooner that page load)
$('#slickbox').hide();
$('#slick-slidetoggle').hover(function() {
$('#slickbox').slideToggle(400);
return false;
});
});
</script>
<style>
#slickbox {
background: #EEE;
border: 1px solid #900;
height: 135px;
}
</style>
</head>
<body>
<a href="#" id="slick-slidetoggle">Slide toggle the box</a>
<div id="slickbox" style="display: block; ">This is the box that will be shown and hidden and toggled at your whim. :)</div>
</body>
</html>
为了方便起见,我还把它放在了 jsfiddle 中:http: //jsfiddle.net/WFf9X/
我需要帮助来实现以下目标:
我希望能够滚动文本:滑动切换框并且框应该打开,但我也应该能够在框中移动光标,而不会关闭它。只有当光标离开框或文本滑动切换框时,框才会在 400ms 后关闭。
谢谢您的帮助。