开发者

(jQuery) How Still Hover, still showing ... this

http://jsfi开发者_开发知识库ddle.net/5MwVg/15/

When I still hover , will still showing...

How to ? Thanks so much agian

PS: and so thanks if you and add fade in&out effect....


I think you're looking for this:

JavaScript:

$(document).ready(function() {
    $(".post-box").bind('mouseenter', function() {
        $(this).find(".readthis").fadeIn()
    })
    $(".post-box").bind('mouseleave', function() {
        elem = $(this)
        setTimeout(function() {
            elem.find(".readthis").fadeOut()
        }, 2000)
        return false;
    });
});

HTML:

<div id="post-wrapper"> 
    <div class="post-box"> 
        <a style="margin: -5px 0 0 -6px; display: none; position: absolute;" href="#">
        <img src="http://www.filmsys.com/images/star-icon.gif"></a> 
        <img src="http://www.google.com/intl/en_ALL/images/srpr/logo1w.png" />
    </div>
</div>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜