All Projects → touyu → BlurKit

touyu / BlurKit

Licence: MIT license
A lightweight library that can easily blur the view.

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to BlurKit

Shadowview
An iOS Library that makes shadows management easy on UIView.
Stars: ✭ 391 (+2200%)
Mutual labels:  uiview, blur
VaKawaseBlur
Fast and furious Kawase blur implementation for Unreal Engine 4
Stars: ✭ 37 (+117.65%)
Mutual labels:  blur
Blurberry
Transparent blur using UIVisualEffectView without subclassing
Stars: ✭ 46 (+170.59%)
Mutual labels:  blur
cpu-gbfilter
♨️ Optimized Gaussian blur filter on CPU.
Stars: ✭ 14 (-17.65%)
Mutual labels:  blur
JustUiKit
iOS UI Kit With Android-Style Tools. JustUiKit contains JustLinearLayout, JustFrameLayout and so on. It is designed to make Android developers build iOS UI easily. Also for iOS developers, it provides a new way to build UI.
Stars: ✭ 35 (+105.88%)
Mutual labels:  uiview
blurdialog
A dialog providing a blur effect as background, a title and an icon
Stars: ✭ 72 (+323.53%)
Mutual labels:  blur
BadgeControl
Badge view with controller written in Swift 5.0
Stars: ✭ 53 (+211.76%)
Mutual labels:  uiview
spark-convolution-patch
Convolution and other super-patches (blur, sharpen)
Stars: ✭ 74 (+335.29%)
Mutual labels:  blur
Xamarin.BlurView
Dynamic iOS-like blur of underlying Views for Android.
Stars: ✭ 26 (+52.94%)
Mutual labels:  blur
react-native-shadow-2
Cross-platform shadow for React Native. Supports Android, iOS, Web and Expo.
Stars: ✭ 442 (+2500%)
Mutual labels:  blur
Sequents
A simple continuous animation library for iOS UI.
Stars: ✭ 31 (+82.35%)
Mutual labels:  uiview
photomosaics
Python program that makes a photo mosaic out of a given image
Stars: ✭ 25 (+47.06%)
Mutual labels:  mosaic
AnalogClock
Animated analog for iOS clock written in Swift
Stars: ✭ 24 (+41.18%)
Mutual labels:  uiview
rainbowify
Fabric mod for rainbow and blur backgrounds in minecraft guis
Stars: ✭ 18 (+5.88%)
Mutual labels:  blur
blur-me
Extension that adds a blur look to applications and to different parts of the GNOME Shell, including the top panel, dash and overview
Stars: ✭ 166 (+876.47%)
Mutual labels:  blur
blur-up
A tool that creates preview images.
Stars: ✭ 28 (+64.71%)
Mutual labels:  blur
Friendly Code Editor
Try this Friendly Code Editor. You'll love it. I made it with a lot of effort. It has some great features. I will update it adequately later. Very helpful for developers. Enjoy and share.
Stars: ✭ 20 (+17.65%)
Mutual labels:  blur
blurhash
Blurhash encoder/decoder algorithm implemenation in Nim.
Stars: ✭ 26 (+52.94%)
Mutual labels:  blur
frosted-glass
❄️ Add a live frosted glass blur effect over any type of web content, including text.
Stars: ✭ 62 (+264.71%)
Mutual labels:  blur
CollectionViewMultiColumnLayout
A tiled waterfal/mosaic UICollectionViewLayout with support for explicit columns.
Stars: ✭ 13 (-23.53%)
Mutual labels:  mosaic

⚠️ Be careful. Currently it does not work on iOS 14.

A lightweight library that can easily blur the view.

Features

  • Without inheritance
  • Corresponds to UIView, UIImageView, UILabel etc...
  • Adjustable blur condition
  • Lightweight

Usage

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        
        view.bk.addBlur(blurRadius: 0)

        UIView.animate(withDuration: 5) {
            self.view.bk.blurRadius = 5
        }
    }
}
label.bk.addBlur(blurRadius: 3, colorTint: .white, colorTintAlpha: 0.4)
imageView.bk.addBlur(blurRadius: 4, colorTint: .white, colorTintAlpha: 0.2)
view.bk.removeBlur()
view.bk.isBlurHidden = true // or false

Installation

Carthage

Add this to Cartfile

github "touyu/BlurKit" ~> 0.1
$ carthage update --platform iOS

CocoaPods

# Podfile
use_frameworks!

target 'YOUR_TARGET_NAME' do
    pod 'BlurKit', '~> 0.1'
end
$ pod install

⚠️ Caution

Because BlurKit uses the Private API, please use it carefully.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].