图片标题 - 我不希望它消失

时间:2013-06-04 21:13:20

标签: javascript jquery html5 css3 html5-canvas

我正在创建索引页面,这是带有标题的图像块。实际图像是彩色的,但我设置它们可以加载黑/白。当它们悬停在上面时,它们会变成彩色的。然而,当我将鼠标悬停在图像上时,它会变成彩色,但“图形标题”会消失,这会产生链接。我不想要那个。所以任何人都可以帮助我:/

(试过jfiddle,但代码不能100%工作,所以生病复制/粘贴,并发布链接到我的网站) http://leaguerage.net/beta

使用Javascript:     

// On window load. This waits until images have loaded which is essential
$(window).load(function(){

    // Fade in images so there isn't a color "pop" document load and then on window load
    $("#sliding-container figure img").fadeIn(500);

    // clone image
    $('#sliding-container figure img').each(function(){
        var el = $(this);
        el.css({"position":"absolute"}).wrap("<div class='img_wrapper' style='display: inline-block'>").clone().addClass('img_grayscale').css({"position":"absolute","z-index":"998","opacity":"0"}).insertBefore(el).queue(function(){
            var el = $(this);
            el.parent().css({"width":this.width,"height":this.height});
            el.dequeue();
        });
        this.src = grayscale(this.src);
    });

    // Fade image 
    $('#sliding-container figure img').mouseover(function(){
        $(this).parent().find('img:first').stop().animate({opacity:1}, 1000);
    })
    $('.img_grayscale').mouseout(function(){
        $(this).stop().animate({opacity:0}, 1000);
    });     
});

// Grayscale w canvas method
function grayscale(src){
    var canvas = document.createElement('canvas');
    var ctx = canvas.getContext('2d');
    var imgObj = new Image();
    imgObj.src = src;
    canvas.width = imgObj.width;
    canvas.height = imgObj.height; 
    ctx.drawImage(imgObj, 0, 0); 
    var imgPixels = ctx.getImageData(0, 0, canvas.width, canvas.height);
    for(var y = 0; y < imgPixels.height; y++){
        for(var x = 0; x < imgPixels.width; x++){
            var i = (y * 4) * imgPixels.width + x * 4;
            var avg = (imgPixels.data[i] + imgPixels.data[i + 1] + imgPixels.data[i + 2]) / 3;
            imgPixels.data[i] = avg; 
            imgPixels.data[i + 1] = avg; 
            imgPixels.data[i + 2] = avg;
        }
    }
    ctx.putImageData(imgPixels, 0, 0, 0, 0, imgPixels.width, imgPixels.height);
    return canvas.toDataURL();
}

HTML:

<div id="sliding-container">
    <figure>

        <img id="imgblocks" src="blocks/newsite.png" alt="">
        <figcaption><a href="#">Welcome to the new LeagueRage.net!</a></figcaption>
    </figure>
    <figure>
        <img id="imgblocks" src="blocks/forums.png" alt="">
        <figcaption>Visit our forums! Join the community!</figcaption>
    </figure>
</div>

1 个答案:

答案 0 :(得分:1)

为标题添加z-index。

 figcaption {
 z-index:10000;
 }