## Sequent
Sequent is a library that starts animation continuously for multiple views at regular intervals
## Preview
<img src="https://gitee.com/HarmonyOS-tpc/Sequent/raw/master/Sequent.gif" width="40%"/>
## Gradle
```
allprojects{
repositories{
mavenCentral()
}
}
implementation 'io.openharmony.tpc.thirdlib:Sequent:1.0.1'
```
## Usage
```
## Components inheriting ComponentContainer are available.
# e.g. DirectionalLayout, DependentLayout, StackLayout, etc
DirectionalLayout layout = (DirectionalLayout) findComponentById(ResourceTable.Id_layout);
# Just write a line. Default animation is Fadein.
Sequent.origin(layout).start();
```
You can change the animation settings.
```
Sequent
.origin(componentContainer)
.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, AnimatorProperty[]) // option. implemented Animation or AnimatorProperty[].
.start()
```
Please use the following implemented animation effects.
```bounceIn``` ```fadeIn``` ```fadeInDown``` ```fadeInLeft``` ```fadeInRight``` ```fadeInUp``` ```rotateIn```
## entry运行要求
通过DevEco studio,并下载SDK
将项目中的build.gradle文件中dependencies→classpath版本改为对应的版本(即你的IDE新建项目中所用的版本)
## 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.
```