Vague.js - 模糊效果插件


MIT
跨平台
JavaScript

软件简介

Vague.js 是一个实用的脚本,它能让你在任何种类的 HTML 元素上增加模糊效果。Vague.js 会检查用户的设备是否支持 CSS
过滤器,否则它会退回使用 SVG 过滤器或者微软的 CSS 过滤器。

示例代码:

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();