All Projects → brocoo → Brflabbytable

brocoo / Brflabbytable

Licence: apache-2.0
Bouncy and distorded table view cells, available on Cocoapods

Projects that are alternatives of or similar to Brflabbytable

Paroller.js
Parallax scrolling jQuery plugin
Stars: ✭ 535 (-35.07%)
Mutual labels:  scrolling
Scrolldir
0 dependency JS plugin to leverage scroll direction with CSS ⬆⬇ 🔌💉
Stars: ✭ 679 (-17.6%)
Mutual labels:  scrolling
Txscrolllabelview
🌭TXScrollLabelView, the best way to show & display information such as adverts / boardcast / onsale e.g. with a customView.
Stars: ✭ 714 (-13.35%)
Mutual labels:  scrolling
Tablekit
Type-safe declarative table views.
Stars: ✭ 567 (-31.19%)
Mutual labels:  uitableview
Gumshoe
A simple vanilla JS scrollspy script.
Stars: ✭ 640 (-22.33%)
Mutual labels:  scrolling
Animatescroll.js
A Simple jQuery Plugin for Animating Scroll
Stars: ✭ 708 (-14.08%)
Mutual labels:  scrolling
Yjbannerview
【抱歉,暂时不提供开源】A very popular and highly customized banner view, 无限循环滚动轮播图BannerView、焦点图, 支持Cocoapods 及 Carthage. 支持完全自定义
Stars: ✭ 506 (-38.59%)
Mutual labels:  scrolling
Changeset
Minimal edits from one collection to another
Stars: ✭ 807 (-2.06%)
Mutual labels:  uitableview
Swipecellkit
A swipeable UITableViewCell or UICollectionViewCell with support for:
Stars: ✭ 5,745 (+597.21%)
Mutual labels:  uitableview
React Fullpage
Official React.js wrapper for fullPage.js https://alvarotrigo.com/react-fullpage/
Stars: ✭ 707 (-14.2%)
Mutual labels:  scrolling
Vue Parallax
🌌 Vue.js component for parallax image scroll effects
Stars: ✭ 569 (-30.95%)
Mutual labels:  scrolling
Jquery.localscroll
Animated anchor navigation made easy with jQuery
Stars: ✭ 624 (-24.27%)
Mutual labels:  scrolling
Gltablecollectionview
Netflix and App Store like UITableView with UICollectionView, written in pure Swift 4.2
Stars: ✭ 709 (-13.96%)
Mutual labels:  uitableview
Tableflip
A simpler way to do cool UITableView animations! (╯°□°)╯︵ ┻━┻
Stars: ✭ 547 (-33.62%)
Mutual labels:  uitableview
Flix
iOS reusable form library in Swift.
Stars: ✭ 725 (-12.01%)
Mutual labels:  uitableview
Vue Chat Scroll
🖱️ Vue directive to keep things scrolled to the bottom.
Stars: ✭ 517 (-37.26%)
Mutual labels:  scrolling
Sticky State
StickyState is a high performant module making native position:sticky statefull and polyfilling the missing sticky browser feature
Stars: ✭ 692 (-16.02%)
Mutual labels:  scrolling
Scroll Into View If Needed
Element.scrollIntoView ponyfills for things like "if-needed" and "smooth"
Stars: ✭ 811 (-1.58%)
Mutual labels:  scrolling
Viewanimator
ViewAnimator brings your UI to life with just one line
Stars: ✭ 6,592 (+700%)
Mutual labels:  uitableview
Tysnapshotscroll
一句代码保存截图,将 UIScrollView UITableView UICollectionView UIWebView WKWebView 网页 保存 为 长图 查看。Save the scroll view page as an image,support UIScrollView,UITableView,UICollectionView,UIWebView,WKWebView.(Support iOS13)
Stars: ✭ 709 (-13.96%)
Mutual labels:  uitableview

BRFlabbyTable

BRFlabbyTable is a set of classes that allow you to add a bouncy and distorted effect on a cell frame while the table is scrolling. The "flabbiness" of the cells is based on the speed of scrolling.

Upon pressing and dragging, the highlighted cell grows around the touch area.

See BRFlabbyTable in action on Vimeo here and here.

http://i.imgur.com/Fl90rLm.png http://i.imgur.com/0KhUhMN.png

Usage

BRFlabbyTable is available via Cocoapods, add this line in your podfile :

pod 'BRFlabbyTable', '~> 1.0'
  1. Import the classes into your view controller:
  #import "BRFlabbyTableManager.h"
  #import "BRFlabbyTableViewCell.h"
  1. Initialize the BRFlabbyTableManager in the viewDidLoad method of your view controller or any init method
  self.flabbyTableManager = [[BRFlabbyTableManager alloc] initWithTableView:self.tableView];
  [self.flabbyTableManager setDelegate:self];
  1. Adopt the BRFlabbyTableManagerDelegate protocol and implement the following delegate method:
  - (UIColor *)flabbyTableManager:(BRFlabbyTableManager *)tableManager flabbyColorForIndexPath:(NSIndexPath *)indexPath{
          
      return [UIColor randomColor];
  }

  1. Register BRFlabbyTableViewCell subclasses for your UITableView and set their color and behavior in the tableView:cellForRowAtIndexPath: method :
  - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  
      BRFlabbyTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"BRFlabbyTableViewCellIdentifier" forIndexPath:indexPath];
      [cell setFlabby:YES];
      [cell setLongPressAnimated:YES];
      [cell setFlabbyColor:[UIColor randomColor]];
      return cell;
  }
  1. Enjoy!

Notes

BRFlabbyTableViewCell and its subclasses work also with the Interface Builder and Autolayout.

The Android version developed by jpardogo is available at FlabbyListView

Developed By

Julien Ducret - [email protected]

Follow me on Twitter @jbrocoo

Check out my app: Spores

Licence

BRFlabbyTable is under Apache licence, see the LICENCE file for more info.

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].