All Projects → fujiyuu75 → Sequent

fujiyuu75 / Sequent

A simple continuous animation library for Android UI.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Sequent

Sequents
A simple continuous animation library for iOS UI.
Stars: ✭ 31 (-88.21%)
Mutual labels:  animations, animated, animation-library, animate
Ibackdrop
A library to simply use Backdrop in your project (make it easy). Read more ->
Stars: ✭ 137 (-47.91%)
Mutual labels:  material-design, material, material-ui, android-ui
Materiallettericon
Material first letter icon like lollipop contacts icon. Letter(s) on a shape drawn on canvas.
Stars: ✭ 255 (-3.04%)
Mutual labels:  material-design, material, material-ui, android-ui
Materialfavoritebutton
Animated favorite/star/like button
Stars: ✭ 586 (+122.81%)
Mutual labels:  material-design, material, material-ui, android-ui
Materialdialog Android
📱Android Library to implement animated, 😍beautiful, 🎨stylish Material Dialog in android apps easily.
Stars: ✭ 602 (+128.9%)
Mutual labels:  material-design, material-ui, animation-library, android-ui
Bluetooth State View
Material design animated Bluetooth state view for Android
Stars: ✭ 36 (-86.31%)
Mutual labels:  material-design, material, animations, android-ui
Slidetoact
A simple 'Slide to Unlock' Material widget for Android, written in Kotlin 📱🎨🦄
Stars: ✭ 783 (+197.72%)
Mutual labels:  material-design, material, material-ui, android-ui
Motion Shapeofview
Explain how to use MotionLayout with ShapeOfView
Stars: ✭ 236 (-10.27%)
Mutual labels:  material-design, material, material-ui, animations
Materialanim
基于Android 系统的动画总结
Stars: ✭ 123 (-53.23%)
Mutual labels:  material-design, material, material-ui
Svelte Material Ui
Svelte Material UI Components
Stars: ✭ 2,081 (+691.25%)
Mutual labels:  material-design, material, material-ui
Material Intro
A simple material design app intro with cool animations and a fluent API.
Stars: ✭ 1,718 (+553.23%)
Mutual labels:  material-design, material, animations
Materialdrawer
The flexible, easy to use, all in one drawer library for your Android project. Now brand new with material 2 design.
Stars: ✭ 11,498 (+4271.86%)
Mutual labels:  material-design, material-ui, android-ui
Jekyll Material Theme
A Jekyll Theme based on Material Design using Materialize.
Stars: ✭ 165 (-37.26%)
Mutual labels:  material-design, material, material-ui
ArcPageIndicator
Android Page Indicator for ViewPager with original animations. It uses an ellipse to dispose indication spots, and can draw a hand, like in old elevators.
Stars: ✭ 73 (-72.24%)
Mutual labels:  material-ui, animations, android-ui
Fancyshowcaseview
An easy-to-use customisable show case view with circular reveal animation.
Stars: ✭ 1,662 (+531.94%)
Mutual labels:  material-design, material-ui, android-ui
Materialabout
It's a material-design about screen to use on your Android apps. A developer profile and application information easy to integrate. 🔖
Stars: ✭ 1,511 (+474.52%)
Mutual labels:  material-design, material, material-ui
Smart Webcomponents
Web Components & Custom Elements for Professional Web Applications
Stars: ✭ 110 (-58.17%)
Mutual labels:  material-design, material, material-ui
Bottomsheet
BottomSheet dialog library for Android
Stars: ✭ 219 (-16.73%)
Mutual labels:  material-design, material-ui, android-ui
Hubuntu Ui
Material Admin Dashboard Starter UI ( Ubuntu style ) - https://720kb.github.io/hubuntu-ui/
Stars: ✭ 207 (-21.29%)
Mutual labels:  material-design, material, material-ui
Material Admin
Free Material Admin Template
Stars: ✭ 219 (-16.73%)
Mutual labels:  material-design, material, material-ui

Sequent

Sequent is a library that starts animation continuously for multiple views at regular intervals.

# Views inheriting ViewGroup are available.
# e.g. LinearLayout, RelativiLayout, framelayout, etc
LinearLayout layout = (LinearLayout) v.findViewById(R.id.layout);

# Just write a line. Default animation is Fadein.
Sequent.origin(layout).start()

You can change the animation settings.

Sequent
   .origin(viewGroup)
   .duration(int) // option.
   .delay(int) // option. StartOffSet time.
   .offset(int) // option. Interval time.
   .flow(Direction) // option. Flow of animations in (FORWARD/BACKWARD/RANDOM). 
   .anim(Context, Animation) or .anim(Context, int) // option. implemented Animation or ObjectAnimator xml resource.
   .start()

Please use the following implemented animation effects.

bounceIn fadeIn fadeInDown fadeInLeft fadeInRight fadeInUp rotateIn

Download

dependencies {
  compile 'com.fujiyuu75:sequent:0.2.1'
}

Continuous animation library like Sequent is also available for iOS.

Bugs and Feedback

For bugs, questions and discussions please use the github issues.

License

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
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].