> 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 of the array will refer to the animation for mobile views. The second will be for desktop.

### Considerations

JS property only (without HTML attribute). Index 0 is mobile and 1 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']}
/>
```
