我正在尝试使用 Here
模糊Vague.js这样的图像这是我的代码:
HTML
<img id="yourelement" src="http://sea-captains-house.com/images/box-discover-oia/sunset.jpg" />
的jQuery
var vague = $('#yourelement').Vague({
intensity: 3, // Blur Intensity
forceSVGUrl: false, // Force absolute path to the SVG filter,
// default animation options
animationOptions: {
duration: 1000,
easing: 'linear' // here you can use also custom jQuery easing functions
}
});
vague.blur();
这是 JSFiddel
请帮我错误吗?