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

https://github.com/marko-js/rive

A wrapper around `@rive/canvas-lite` for Marko
https://github.com/marko-js/rive

Last synced: 12 months ago
JSON representation

A wrapper around `@rive/canvas-lite` for Marko

Awesome Lists containing this project

README

          

# Marko Rive

A wrapper around the `@rive/canvas-lite` package that provides a Marko component for rendering [Rive](https://rive.app/) animations.

## Installation

```bash
npm install @marko-tags/rive
yarn add @marko-tags/rive
```

## Usage

### Marko 6 (Tags API)

```marko
import riveAsset from "./path/to/asset.riv";

riveInstance().play();
```

### Marko 5 (Class API)

```marko
import riveAsset from "./path/to/asset.riv";
import type { Rive } from "@rive-app/canvas-lite";

class {
declare riveInstance: Rive;
handleMounted(instance: Rive) {
this.riveInstance = instance;
this.riveInstance.play();
}
}
```

## Preloading the Rive Runtime

By default, the Rive runtime is loaded asynchronously when the component is mounted. This is harmful for performance, especially for assets which are visible on page load. To preload the runtime, be sure that you add this tag to the `` of each document that uses Rive assets:

```marko

```