Popularity
8.3
Declining
Activity
0.0
Stable
2,196
61
121

Code Quality Rank: L5
Programming language: Swift
License: MIT License
Tags: UI    
Latest version: v1.0.2

WobbleView alternatives and similar libraries

Based on the "UI" category.
Alternatively, view WobbleView alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of WobbleView or a related project?

Add another 'UI' Library

README

WobbleView

WobbleView is an implementation of a recently popular wobble effect for any view in your app. It can be used to easily add dynamics to user interactions and transitions.

Check this project on Dribble.

Wobble

Installation

There are two options:

  1. WobbleView is available via CocoaPods.
  2. Manually add the files into your Xcode project. Slightly simpler, but updates are also manual.

Usage

Just create a WobbleView and change its position.

self.wobbleView.frame.origin = CGPoint(x: randomX, y: randomY)

or

self.wobbleView.center = CGPoint(x: randomX, y: randomY)

or animate the view's constraints.

Properties

internal var frequency: CGFloat = 3

The frequency of oscillation for the wobble behavior.

internal var damping: CGFloat = 0.3

The amount of damping to apply to the wobble behavior.

var edges: ViewEdge = ViewEdge.Right

A bitmask value that identifies the edges that you want to wobble. You can use this parameter to wobble only a subset of the sides of the rectangle.

Requirements

  • Swift 2.0
  • Xcode 7

License

Released under the MIT license. See the LICENSE file for more info.


*Note that all licence references and agreements mentioned in the WobbleView README section above are relevant to that project's source code only.