background-blur

Ultra light cross browser image blurring plugin for jQuery

  • 所有者: msurguy/background-blur
  • 平台:
  • 許可證:
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

Background Blur Plugin

Background Blur plugin is a cross browser jQuery plugin for blurring images.

See http://msurguy.github.io/background-blur/ for documentation and demos

Installation and Usage

Install the plugin with Bower:

bower install background-blur

Or with NPM:

npm install background-blur

Or manually:

<script src="jquery.min.js"></script>
<script src="background-blur.min.js"></script>

Create a container which will contain the blurred image:

<div id='some-element'></div>

Then create a blurred image in that container:

$('#some-element').backgroundBlur({
    imageURL : 'http://URL-of-the-image',
    blurAmount : 50,
    imageClass : 'bg-blur'
});

OR Create a blurred image and fade it in:

$('#some-element').backgroundBlur({
    imageURL : 'http://URL-of-the-image',
    blurAmount : 50,
    imageClass : 'bg-blur'
    duration: 1000, // If the image needs to be faded in, how long that should take
    endOpacity : 1 // Specify the final opacity that the image will have
});

OR Create a blurred image, fade it in and switch to another image:

// Initialize the blur
$('#some-element').backgroundBlur({
    imageURL : 'http://URL-of-the-image',
    blurAmount : 50,
    imageClass : 'bg-blur'
    duration: 1000, // If the image needs to be faded in, how long that should take
    endOpacity : 1 // Specify the final opacity that the image will have
});

//Switch the image
$('#some-element').backgroundBlur('http://URL-of-another-image');

Browser Support:

  • Chrome
  • Firefox
  • Safari and Safari Mobile (iOS)
  • IE6, IE7, IE8 - blur is supported without animation (need to omit "duration" property in those browsers to make this plugin work, the problem will get fixed when Velocity.js issue gets fixed)
  • IE9, IE10, IE11
  • Android browsers

Possibly, more. Please let me know if some browser doesn't work

Under the hood:

This plugin utilizes SVG filter to blur the image if SVG is supported by the browser (all except IE), otherwise the plugin creates an IMG tag and applies a special IE-only filter in CSS

Q: Why not simply use CSS 3 blur filter?
A: The browser support for SVG blur filter is much wider when it comes to older browsers.

Velocity.js support:

If you are using Velocity.js animation library, the plugin will automatically detect its presence and make fade in/fade out animations more performant, especially on mobile. If Velocity is not present on the page, jQuery's "animate" is used instead.

Where is this used?

This plugin is currently used on http://www.nbcnews.com/video

Have questions / suggestions or using the plugin? Please reach out on Github or Twitter at http://twitter.com/msurguy

LICENSE

This plugin is released under MIT license, giving you permission to use for commercial and non-commercial projects.

主要指標

概覽
名稱與所有者msurguy/background-blur
主編程語言HTML
編程語言HTML (語言數: 2)
平台
許可證
所有者活动
創建於2015-07-03 23:16:35
推送於2016-08-04 15:12:34
最后一次提交2016-04-04 20:32:12
發布數10
最新版本名稱v0.1.3 (發布於 2016-04-04 20:32:12)
第一版名稱v0.0.1 (發布於 )
用户参与
星數1k
關注者數38
派生數134
提交數33
已啟用問題?
問題數6
打開的問題數6
拉請求數1
打開的拉請求數0
關閉的拉請求數1
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?