【发布时间】:2012-06-04 01:20:16
【问题描述】:
我刚刚尝试了以下代码来模糊图像,效果很好。但是我想在单击元素时恢复原状,我该怎么做?
$(window).bind("load",function() {
$(".testclass").pixastic("blurfast", {amount:0.9});
$(".clickclass").click(function(e){
// this statement should revert the image
});
}
);
【问题讨论】: