$(function() {
$( "#slider" ).slider({
range: "min",
value: 2,
min: 0,
max: 5,
slide: function( event, ui ) {
// While sliding update the value
$( "#image" ).pixastic('blurfast', {amount:ui.value});
}
});
// Set the initial slider amount
var value = $( "#slider" ).slider( "value" );
$( "#image" ).pixastic('blurfast', {amount:value});
});
我有多个滑块可以对图像进行像素化处理。但是每次滑块更新图像时,我希望它恢复旧效果并应用该效果的新级别,而不是每次累积的效果。我知道pixastic库中的revert函数,但我对jquery相当新,并且不确定如何使用它。我怎么能这样做?
答案 0 :(得分:0)
$("#image").click(function(){
Pixastic.revert(document.getElementById('image'));
//apply your new effect.
});