Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/JeasonWong/Particle

It's a cool animation which can use in splash or somewhere else.
https://github.com/JeasonWong/Particle

Last synced: about 23 hours ago
JSON representation

It's a cool animation which can use in splash or somewhere else.

Lists

README

        

## What's Particle ?
It's a cool animation which can use in splash or anywhere else.

## Demo

![Markdown](https://raw.githubusercontent.com/jeasonwong/Particle/master/screenshots/particle.gif)

## Article
[手摸手教你用Canvas实现简单粒子动画](http://www.wangyuwei.me/2016/08/29/%E6%89%8B%E6%91%B8%E6%89%8B%E6%95%99%E4%BD%A0%E5%AE%9E%E7%8E%B0%E7%AE%80%E5%8D%95%E7%B2%92%E5%AD%90%E5%8A%A8%E7%94%BB/)

## Attributes

|name|format|description|中文解释
|:---:|:---:|:---:|:---:|
| pv_host_text | string |set left host text|设置左边主文案
| pv_host_text_size | dimension |set host text size|设置主文案的大小
| pv_particle_text | string |set right particle text|设置右边粒子上的文案
| pv_particle_text_size | dimension |set particle text size|设置粒子上文案的大小
| pv_text_color | color |set host text color|设置左边主文案颜色
|pv_background_color|color|set background color|设置背景颜色
| pv_text_anim_time | integer |set particle text duration|设置粒子上文案的运动时间
| pv_spread_anim_time | integer |set particle text spread duration|设置粒子上文案的伸展时间
|pv_host_text_anim_time|integer|set host text displacement duration|设置左边主文案的位移时间

## Usage
#### Define your banner under your xml :

```xml

```

#### Start animation :

```java
mParticleView.startAnim();
```

#### Add animation listener to listen the end callback :

```java
mParticleView.setOnParticleAnimListener(new ParticleView.ParticleAnimListener() {
@Override
public void onAnimationEnd() {
Toast.makeText(MainActivity.this, "Animation is End", Toast.LENGTH_SHORT).show();
}
});
```

## Import

Step 1. Add it in your project's build.gradle at the end of repositories:

```gradle
repositories {
maven {
url 'https://dl.bintray.com/wangyuwei/maven'
}
}
```

Step 2. Add the dependency:

```gradle
dependencies {
compile 'me.wangyuwei:ParticleView:1.0.4'
}
```

### About Me

[Weibo](http://weibo.com/WongYuwei)

[Blog](http://www.wangyuwei.me)

### QQ Group 欢迎讨论

**479729938**

##**License**

```license
Copyright [2016] [JeasonWong of copyright owner]

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