JQuery 改变 的色调、饱和度、gamma?
如果将鼠标悬停在图像上,我想让图像变暗。 是否可以使用 JQuery(或 Javascript)更改图像的色调、饱和度或伽玛?
I want to make an image darker if you hover your mouse over it.
Is it possible to change the hue, saturation or gamma of an img with JQuery (or Javascript)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
扩展马塞洛的建议,您可以在最后的较暗阶段获得图像的副本,将其放在原始图像的顶部,并像尼克所说的那样在鼠标悬停时改变其不透明度。此方法允许您对图像过渡执行任何操作:更改其色调、饱和度等。
一个简单的 Javascript 淡入淡出动画代码可以在此处找到。
Extending Marcelo's suggestion, you could have a copy of your image in the final, darker stage, put it on top of the original, and vary its opacity on mouse hover like Nick said. This method allows you to do anything with the image transition: change its hue, saturation etc.
A simple Javascript fade animation code can be found here.
您是否尝试过 PaintbrushJS 或 Pixastic 库?
Have you tried PaintbrushJS or Pixastic library?
在图像顶部显示和隐藏半透明的黑色
。
Show and hide a semi-transparent black
<div>
over the top of the image.仅使用 JavaScript 无法完成此操作(因为它无法操作二进制文件),但是您可以使用 HTML5
元素来帮助完成此操作。
看看这里,有一些库可以提供帮助。
如果您只想淡出它,请更改悬停时的不透明度,例如:
It is not possible to do this using only JavaScript (since it can't manipulate binary files), however you can do this with the HTML5
<canvas>
element to help.Take a look here, there are some libraries out there to help.
If you just want to fade it, change the opacity on hover, for example:
我组装了这个原型,它使用跨浏览器、仅 CSS 的解决方案来在悬停时对图像饱和度进行动画处理。在 JS/jQuery 中有很多方法可以做到这一点,但是为什么不直接在 CSS 中做到呢?
请查看此处的 DEMO 和 JSfiddle 这里
http:// /jsfiddle.net/buttonpresser/x6GfX/show/light/
I put together this prototype that uses a cross-browser, CSS only solution to animating image saturation on hover. There's planty of ways to do it in JS/jQuery but hey why not just do it in CSS?
Check out the DEMO here and the JSfiddle here
http://jsfiddle.net/buttonpresser/x6GfX/show/light/
您可以在 CSS 中执行此操作。
还有许多其他过滤器,例如模糊、饱和度、对比度……
如果需要,您可以轻松使用 JQuery 来更改 css。
You can do this in CSS
There's a bunch of other filters like blur, saturate, contrast, ...
You can easely use JQuery to change the css if you want.