> For the complete documentation index, see [llms.txt](https://docs.facephi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.facephi.com/docs.facephi-en/sdks/sdk-web/componentes/selphid-documentos/propiedades/tipanimations.md).

# tipAnimations

## Details

**Attribute:** `tip-animations`

**Type:** `string[]`

**Default value:** `[]`

## Morphology

```typescript
selphid.tipAnimations = ['/assets/tip-mobile.gif', '/assets/tip-desktop.gif'];
```

## Description

Paths to custom animations to replace those used in the initial tip.

In the initial tip there are two types of views, for mobile or for desktop. The first position in the array will refer to the animation for mobile views. The second will be the desktop one.

### Considerations

JS property only (no HTML attribute). Index 0 is mobile and 1 is desktop. Requires [initialTip](/docs.facephi-en/sdks/sdk-web/componentes/selphid-documentos/propiedades/initialtip.md) active.

***

## Example

```jsx
<facephi-selphid-widget
    initialTip={true}
    tipAnimations={['/assets/tip-mobile.gif', '/assets/tip-desktop.gif']}
/>
```
