我已經在這裏待了好幾天了,所以任何幫助都會非常感謝。我有一個鏈接,其中包含兩個坐在彼此頂部的div。頂部div隱藏,但滑入部分覆蓋mouseenter
的底部div,然後再次出現mouseleave
。它在一定程度上工作,但有點bug。這就是我對jQuery的(我已經從演示和文檔拼湊起來):鼠標中心上的jQuery UI滑動效果
$(document).ready(function(){
$(".toggle").bind("mouseenter",function(){
$("> :eq(0)", this).show("slide", { direction: "down" });
}).bind("mouseleave",function(){
$("> :eq(0)", this).hide("slide", { direction: "down" });
});
});
,這是頁面結構(這是一個WordPress頁面)
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<a href="<?php the_permalink(); ?>" class="toggle">
<div id="slide" class="post-info" style="display: none;">
<h1><?php the_title(); ?></h1>
<ul>
<li>more info here</li>
<li>more info here</li>
</ul>
</div>
<div class="post-image">
<img src="<?php post_image('', false, false); ?>" width="275" height="155" />
</div>
</a>
</div>
你的問題是什麼? – Soviut 2009-01-23 02:34:00