All Projects → ApplikeySolutions → Orionpreview

ApplikeySolutions / Orionpreview

Licence: mit
🅾️ OrionPreview is a simple animation with tanslation or scale views written in Java.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Orionpreview

Collectionviewpaginglayout
a simple but highly customizable paging layout for UICollectionView.
Stars: ✭ 947 (+182.69%)
Mutual labels:  scale, blur
Counterpart
A translation and localization library for Node.js and the browser.
Stars: ✭ 239 (-28.66%)
Mutual labels:  translation, library
Depth
Add some Depth to your fragments
Stars: ✭ 789 (+135.52%)
Mutual labels:  translation, scale
Angular Open Source Starter
This is a starter project for creating open-source libraries for Angular. It is a full fledged Angular workspace with demo application and easy library addition. It is designed to be used for open-sourcing libraries on Github and has everything you'd need ready for CI, code coverage, SSR testing, StackBlitz demo deployment and more.
Stars: ✭ 120 (-64.18%)
Mutual labels:  opensource, library
blur-up
A tool that creates preview images.
Stars: ✭ 28 (-91.64%)
Mutual labels:  blur, preview
Lib
🤖 Lets you focus on the stuff that matters
Stars: ✭ 142 (-57.61%)
Mutual labels:  opensource, library
Deeply
PHP client for the DeepL.com translation API (unofficial)
Stars: ✭ 152 (-54.63%)
Mutual labels:  translation, library
Weatherview
WeatherView is an Android Library let you make cool weather animations for your app
Stars: ✭ 426 (+27.16%)
Mutual labels:  opensource, library
Laracom
Laravel FREE E-Commerce Software
Stars: ✭ 1,570 (+368.66%)
Mutual labels:  shop, opensource
Wellcommerce
Open-source E-Commerce software
Stars: ✭ 499 (+48.96%)
Mutual labels:  shop, opensource
Cdnjs
🤖 CDN assets - The #1 free and open source CDN built to make life easier for developers.
Stars: ✭ 9,270 (+2667.16%)
Mutual labels:  opensource, library
To lang
Translate Ruby strings and arrays with Google Translate.
Stars: ✭ 303 (-9.55%)
Mutual labels:  translation, library
Angular Tree Component
A simple yet powerful tree component for Angular (>=2)
Stars: ✭ 1,031 (+207.76%)
Mutual labels:  opensource, library
Image Comparison
Published on Maven Central and jCenter Java Library that compares 2 images with the same sizes and shows the differences visually by drawing rectangles. Some parts of the image can be excluded from the comparison. Can be used for automation qa tests.
Stars: ✭ 145 (-56.72%)
Mutual labels:  opensource, library
Rando.js
The world's easiest, most powerful random function.
Stars: ✭ 659 (+96.72%)
Mutual labels:  opensource, library
Cypress Docs Pt Br
Tradução da documentação oficial do framework Cypress.io - traduzida pela comunidade em Português-BR 🌐
Stars: ✭ 112 (-66.57%)
Mutual labels:  translation, opensource
Shadowview
An iOS Library that makes shadows management easy on UIView.
Stars: ✭ 391 (+16.72%)
Mutual labels:  library, blur
Bagisto
An easy to use, free and open source laravel eCommerce platform to build your online shop in no time.
Stars: ✭ 4,140 (+1135.82%)
Mutual labels:  opensource, shop
Aimeos Laravel
Laravel ecommerce package for professional, ultra fast online shops, complex B2B applications and #gigacommerce
Stars: ✭ 5,204 (+1453.43%)
Mutual labels:  shop, opensource
Co.revely.gradient
An Android library for easy gradient management
Stars: ✭ 298 (-11.04%)
Mutual labels:  opensource, library

GitHub license Twitter

Made by Applikey Solutions

Table of Contents

  1. Purpose
  2. Installation
  3. Usage
  4. Demo
  5. Release Notes
  6. Contact Us
  7. License

Purpose

A simple animation with translation or scale views.

Installation

compile 'com.github.applikeysolutions:orionpreview:1.0.1'

Usage

Scale Animation

ScaleAnimation scaleAnimation =
                        new ScaleAnimation.ScaleAnimationBuilder(view, scaleRate, scaleRate)
                        .build();
scaleAnimation.showAnimation();

Translation Animation

TranslationAnimation tanslationAnimation =
                        new TranslationAnimation.TranslationAnimationBuilder(view,
                                               TranslationAnimation.TranslationMode.TranslationAll, startY, endY)
                                               .arcMode(TranslationAnimation.ArcMode.ArcUpward)
                                               .additionStartPoint(startX)
                                               .additionEndPoint(endX)
                                               .build();
tanslationAnimation.showAnimation();

Blur Animation

BlurAnimation blurAnimation =
                        new BlurAnimation.BlurAnimationBuilder(bitmapScale, blurRadius)
                        .build();
Bitmap originalBitmap = BitmapFactory.decodeResource(getResources(),
                R.drawable.image);
blurredBitmap = blurAnimation.blur(MainActivity.this, originalBitmap)

See sample.

Demo

Release Notes

Version 1.0.1

  • Release version.

Contact Us

You can always contact us via [email protected] We are open for any inquiries regarding our libraries and controls, new open-source projects and other ways of contributing to the community. If you have used our component in your project we would be extremely happy if you write us your feedback and let us know about it!

License

MIT License

Copyright (c) 2017 Applikey Solutions

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