All Projects → PSPDFKit-labs → VanGogh

PSPDFKit-labs / VanGogh

Licence: MIT license
💥 Android view animations powered by RxJava 2

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to VanGogh

Transition X
{ } Declarative Kotlin DSL for choreographing Android transitions
Stars: ✭ 514 (+441.05%)
Mutual labels:  ux, animations
Rxanime
Visualizer to understand RxJava operators
Stars: ✭ 261 (+174.74%)
Mutual labels:  animations, rxjava2
Animatable Component
Animate once, use Everywhere! 💫
Stars: ✭ 188 (+97.89%)
Mutual labels:  ux, animations
Arrows
Arrows is an animated custom view to give feedback about your UI sliding panels.
Stars: ✭ 338 (+255.79%)
Mutual labels:  ux, animations
Ckdcss
A tiny set of micro interactions for your checkboxes.
Stars: ✭ 49 (-48.42%)
Mutual labels:  ux, animations
Easytransitions
A simple way to create custom interactive UIViewController transitions
Stars: ✭ 1,592 (+1575.79%)
Mutual labels:  ux, animations
Primer
Intro Animation like Google Primer
Stars: ✭ 230 (+142.11%)
Mutual labels:  ux, animations
J-Curry
A Java library that enables applying Functional Programming concepts like currying and partial application for functions, also it supports types like Either, Try, etc... using RxJava 2 interfaces, compatible with Java 7 and above
Stars: ✭ 17 (-82.11%)
Mutual labels:  rxjava2
RxLogs
An Android & Kotlin Reactive Advanced Logging Framework.
Stars: ✭ 12 (-87.37%)
Mutual labels:  rxjava2
Eva
Eva and Wall-e
Stars: ✭ 131 (+37.89%)
Mutual labels:  rxjava2
Scribble-Font
Scribble Font for Prototyping & Wireframing
Stars: ✭ 48 (-49.47%)
Mutual labels:  ux
flow-ui
Accessibility oriented design system for developing fast and powerful web interfaces.
Stars: ✭ 89 (-6.32%)
Mutual labels:  ux
vuenode-fullstack
Vue.Js & Node fullstack Single Page Application with Relational databases as backend using Sequelize. Live Demo:
Stars: ✭ 42 (-55.79%)
Mutual labels:  animations
touchclick
Provides immediate visual feedback on touch for native-feeling web apps
Stars: ✭ 42 (-55.79%)
Mutual labels:  ux
manim
A community-maintained Python framework for creating mathematical animations.
Stars: ✭ 12,657 (+13223.16%)
Mutual labels:  animations
pycairo-animations
Pycairo Animation Library
Stars: ✭ 19 (-80%)
Mutual labels:  animations
react-spring-bottom-sheet
Accessible ♿️, Delightful ✨, & Fast 🚀
Stars: ✭ 604 (+535.79%)
Mutual labels:  ux
itop-datacenter-view
Extension for iTop: Easily manage & visualize your racks, enclosures and datacenter devices.
Stars: ✭ 24 (-74.74%)
Mutual labels:  ux
firefox-omni-tweaks
A script that disables the clickSelectsAll behavior of Firefox, and more.
Stars: ✭ 33 (-65.26%)
Mutual labels:  ux
UX-UI-Navigation
UX / UI Custom NavigationDrawer with Fragment
Stars: ✭ 70 (-26.32%)
Mutual labels:  ux

Build Status

Great things are done by a series of small things brought together. RxJava meets Animations.

Introduction

VanGogh is a lightweight library that takes Android view animation logic and binds it with RxJava2, providing a simple and powerful API for manipulating animations workflow. (Also see the announcement blog post)

It also provides various pre-made commonly used animations such as fading, rotating, moving, etc. Another thing that you get are the base animation wrappers so you can create your own complex animations with custom actions.

For documentation on how to use the library, please check the VanGogh wiki page.

PSPDFKit offers SDKs for iOS, Android, macOS, Windows and Web to view, edit, annotate, fill forms and digitally sign PDF documents. VanGogh is used in PDF Viewer for Android as the main animation library.

Example

Here's a really simple example of how you can chain animations together:

fadeIn(view1)
  .andThen(fadeIn(view2))
  .andThen(
    together(fadeOut(view3), fadeOut(view4)))
  .subscribe();

And this is just a tip of the iceberg! For further documentation see the Wiki.

Download

Add maven central repo to your repositories in build.gradle:

repositories {
  mavenCentral()
}

And latest version to your dependencies:

compile 'com.pspdfkit-labs:vangogh:0.3.0'

Snapshots of the development version are available in Sonatype's snapshots repository.

License

MIT License

Copyright (c) 2017 PSPDFKit GmbH

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
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].