此功能来自CamanJS库。这是插件的倾斜效应代码
Caman.Filter.register("tiltShift", function(opts) {
var defaults, gradient;
defaults = {
center: {
x: this.dimensions.width / 2,
y: this.dimensions.height / 2
},
angle: 45,
focusWidth: 200,
startRadius: 3,
radiusFactor: 1.5,
steps: 3
};
opts = Util.extend(defaults, opts);
opts.angle *= Math.PI / 180;
gradient = getLinearGradientMap(this.dimensions.width, this.dimensions.height, opts.center.x, opts.center.y, opts.angle, opts.focusWidth, true);
return this.processPlugin("compoundBlur", [gradient, opts.startRadius, opts.radiusFactor, opts.steps]);
});
我提供了以下值作为参数。
this.tiltShift(600,400,300,200,0,200,true).render();
但默认角度仍为45.如何更改?
答案 0 :(得分:0)
查看the documentation,调用此方法的具体方法是:
tiltShift({ angle: 0 });
对方法中Util.extend()
的调用会创建一个具有defaults
属性的对象,但会更改为opts
中提供的任何值(传递给{{的对象) 1}})。