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

https://github.com/poiscript/ngx-spine


https://github.com/poiscript/ngx-spine

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# ngx-spine

[![Build Status](https://travis-ci.org/PoiScript/ngx-spine.svg?branch=master)](https://travis-ci.org/PoiScript/ngx-spine)

Display Spine skeletal animation in Angular.

## Spine Support

`ngx-spine` supports both `json` and `skel` formats.

`ngx-spine` is built upon `spine-ts` 3.8, but it also supports Spine 3.6.x and
3.7.x.

## Install

``` sh
# using npm
$ npm -i ngx-spine
# or yarn
$ yarn add ngx-spine
```

## Usage

``` typescript
import { NgxSpineModule } from "ngx-spine";

@NgModule({
imports: [
NgxSpineModule,
/// ...
],
/// ...
})
export class AppModule {}

```

``` html

[(animation)]="animation"

[(animations)]="animations"

[(skin)]="skin"

[(skins)]="skins"


[dataUrls]="dataUrls"

[speed]="speed"
>
```