当鼠标在没有css的情况下悬停在标题上时,如何使缩略图图像消失?

时间:2013-09-20 05:46:03

标签: javascript jquery html wordpress hover

当我将鼠标悬停在图片的div上时,我有一个简单的jQuery代码来隐藏一个图像并显示另一个图像来更改帖子的缩略图。当我将鼠标悬停在div类中的.thumbs s上时,代码可以正常工作,但我还想添加一个功能,这样当我将鼠标悬停在标题上时,同样的事情就会发生,缩略图会发生变化

问题是,如果我将.headline添加到jquery选择器,我不会得到我想要的结果,当我将鼠标悬停在缩略图上时图像会发生变化。

我知道为什么会这样,但不知道如何解决它。因为我只想要我正在移动的帖子的图像来改变我正在使用$(this),并且因为图像都在.thumbs内,所以没有问题。但标题不在.thumbs div内,因此当我使用$(this).headline时,就像我说的thumbs.headline不存在一样。我怎么能不把标题放在同一个div内,仍然知道我在哪个帖子上空盘旋?

  $('.thumbs').hover(
        function() {
           console.info('in');
    $(this).children('.first').css('display','none'); 
    $(this).children('.second').css('display','block')
                        },
        function() {
        console.info('out');
    $(this).children('.second').css('display','none'); 
    $(this).children('.first').css('display','block');
                    });

HTML代码:

<h2 class='headline'><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h2>
    <?php if ( has_post_thumbnail() ){ ?>
    <a href="<?php the_permalink(); ?>"></a>
<div class='thumbs'>
     <div class='first'><?php the_post_thumbnail()?></div>
     <div class='second'><?php MultiPostThumbnails::the_post_thumbnail(get_post_type(), 'secondary-image');?></div>
                 </div>

3 个答案:

答案 0 :(得分:2)

如果无法包装它们,则应该可以使用:

$('.thumbs').each(function () {

    var thisThumbAndHeadline = $(this).add($(this).prevAll('.headline:first'));

    thisThumbAndHeadline.hover(function () {
        console.info('in');    
        thisThumbAndHeadline.children('.first').hide();
        thisThumbAndHeadline.children('.second').show()
    },

    function () {
        console.info('out');
        thisThumbAndHeadline.children('.first').show();
        thisThumbAndHeadline.children('.second').hide();
    }).trigger('mouseout');

})

答案 1 :(得分:1)

一个简单的解决方案是将侦听器应用于围绕标题和拇指的包装器。

http://jsfiddle.net/A8UP8/

HTML

<div class="wrap">
    <h2 class='headline'> ... </h2>

    <div class='thumbs'>
        <div class='first'> ... /div>
        <div class='second'> ... </div>
    </div>
</div>

的JavaScript

$('.wrap').hover(
    function() {
        console.info('in');
        $(this).find('.first').css('display','none'); 
        $(this).find('.second').css('display','block')
    },
    function() {
        console.info('out');
        $(this).find('.second').css('display','none'); 
        $(this).find('.first').css('display','block');
    }
)

答案 2 :(得分:0)

尝试jQuery:

  • hide()方法隐藏了所选元素

  • show()方法显示隐藏的选定元素