我是jQuery的新手,非常喜欢它.我想知道是否有类似IE的效果,我可以在运行时将图像转换为灰度?
看看pixastic ...它应该工作...
Internet Explorer 5.5+
Opera 9.5+
Firefox 2+
WebKit Nightly
http://www.pixastic.com/lib/docs/actions/desaturate/
var img = new Image(); img.onload = function() { Pixastic.process(img, "desaturate", {average : false}); } document.body.appendChild(img); img.src = "myimage.jpg";