创建圆形鼠标悬停饱和效果

时间:2013-04-02 18:19:24

标签: javascript jquery css animation mouseover

我有两个版本的图像:去饱和版和全彩版。我想要实现的是悬停效果,其中鼠标在去饱和图像上显示出图像颜色版本的圆圈。这有点像在不饱和图像上闪耀聚光灯以显示其颜色。然后当你移开鼠标时,它会渐渐恢复到不饱和状态。

我知道我可能会使用flash,但我想用JavaScript和CSS来做这件事。理想情况下,如果JavaScript被禁用并且宽度可能很宽(响应),这会降低为仅仅是图像。

3 个答案:

答案 0 :(得分:7)

边界半径

CSS3 border-radius可用于创建带有背景图像的圆形div,该背景图像用作图像聚光灯。聚光灯可以叠加在主图像的顶部,并根据鼠标坐标定位。 JSFiddle Demo

虽然没有自然的方法可以软化CSS3中聚光灯的边缘 - 这需要支持向任意内容添加不透明度渐变 - 但可以使用交错的元素集来模拟半径增加和不透明度降低。 Updated demo with softened edges

updated demo中,可以使用以下变量调整聚光灯的大小和柔和度:

var spotlightDiameter = 150;      // Base size (not including the soft edge)
var numSpotlightLayers = 6;       // More layers = softer edges
var spotlightLayerThickness = 2;  // Thinner = the softening is more subtle

这是一个modified demo,其中聚光灯有明显的涟漪。增加了层的厚度,以更清楚地显示它的工作原理。

以下是具有锐边的初始版本的代码的简化版本。

<强> HTML

<div class="content">
    <div class="spotlight"></div>
</div>

<强> CSS

.content {
    position: relative;
    width: 640px;
    height: 480px;
    background: url(desaturated.jpg) no-repeat 0 0;
    overflow: hidden;
}
.spotlight {
    display: none;
    position: absolute;
    background: url(overly_saturated.jpg) no-repeat 0 0;
}

<强>的jQuery

var spotlightDiameter = 150;

// Update the spotlight position on mousemove
$('.content').on('mousemove', function(e){
    var center = {x: e.pageX - this.offsetLeft,
                  y: e.pageY - this.offsetTop};
    var x = center.x - (spotlightDiameter >> 1);
    var y = center.y - (spotlightDiameter >> 1);

    $('.spotlight').css({left: x + 'px', top: y + 'px',
                         backgroundPosition: -x + 'px ' + -y + 'px'}).show();
});

// Hide the spotlight on mouseout
$('.content').on('mouseout', function(e){
    $('.spotlight').hide();
});

// Initialize the spotlight
$(document).ready(function(){
    $('.spotlight').width(spotlightDiameter + 'px')
                   .height(spotlightDiameter + 'px')
                   .css({borderRadius: (spotlightDiameter >> 1) + 'px'});
});

替代实施

这也可以使用HTML5 Canvas或SVG实现。以下是不同方法的浏览器支持比较:

简而言之,IE8及更早版本不适用于任何这些方法,如果需要Android支持,则会将选择限制为border-radius和HTML5 Canvas。当然,由于这是基于鼠标的,因此Android支持可能不是一个因素。

答案 1 :(得分:5)

使用两个完全重叠在一起的SVG <image>元素。底部是灰度图像。顶部是彩色图像。将clipPath应用于彩色图像,然后调整剪切路径上的变换以显示上部图像的不同区域。

简单演示:http://jsfiddle.net/hZgkz/

SVG:

<svg xmlns="http://www.w3.org/2000/svg" width="200px" height="250px">
  <defs>
    <image id="im" width="500" height="500"
     xlink:href="http://www.nyweamet.org/wp-content/uploads/2011/09/0942a__grandCentralStationExterior.jpg"/>
    <clipPath id="clip">
      <path id="path" transform="translate(40,60)"
            d="M60,0 A30,30 1,0,0 60,120 30,30 1,0,0, 60,0"/>
    </clipPath>
  </defs>
  <use id="clippedImage" xlink:href="#im" clip-path="url(#clip)"/>
</svg>

以及移动圈子的JavaScript:

var tx = document.querySelector('#path').transform.baseVal.getItem(0);
setInterval(function(){
  var ms = (new Date)*1;
  tx.matrix.e = Math.sin(ms/812)*150 + 160;
  tx.matrix.f = Math.cos(ms/437)*60 + 70;
},50); 

您所要做的就是跟踪鼠标移动并将转换设置到正确的位置。

答案 2 :(得分:2)

如果我已正确理解您的请求,您可以使用一些CSS来实现结果。我在这里准备了一个小小提琴作为演示:http://jsfiddle.net/sandro_paganotti/k3AmZ/

以下是涉及的代码:

HTML

<figure data-desaturated></figure>
<figure data-original></figure>

CSS

figure{ width: 550px; height: 360px;
        position: absolute; top: 0; left: 0;
        margin: 0; padding: 0; 
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-image: url('yourimage.png');

}

figure[data-desaturated]{
    /* I've used CSS filters tu simulate desaturation, you can use your already desaturated image */
    -webkit-filter: grayscale(0.9);
}

figure[data-original]{
    width: 360px;
    left: 95px;
    border-radius: 180px;
    opacity: 0;
    transition: opacity 0.4s;
}

figure[data-desaturated]:hover + figure[data-original],
figure[data-original]:hover{
    opacity: 1;
}

我还添加了transition来增强体验。

更新

鼠标移动后的版本:http://jsfiddle.net/sandro_paganotti/k3AmZ/3/