kopia lustrzana https://github.com/shoelace-style/shoelace
131 wiersze
3.0 KiB
Markdown
131 wiersze
3.0 KiB
Markdown
---
|
|
meta:
|
|
title: Animated Image
|
|
description: A component for displaying animated GIFs and WEBPs that play and pause on interaction.
|
|
layout: component
|
|
---
|
|
|
|
```html:preview
|
|
<sl-animated-image
|
|
src="https://shoelace.style/assets/images/walk.gif"
|
|
alt="Animation of untied shoes walking on pavement"
|
|
></sl-animated-image>
|
|
```
|
|
|
|
```jsx:react
|
|
import SlAnimatedImage from '@shoelace-style/shoelace/dist/react/animated-image';
|
|
|
|
const App = () => (
|
|
<SlAnimatedImage
|
|
src="https://shoelace.style/assets/images/walk.gif"
|
|
alt="Animation of untied shoes walking on pavement"
|
|
/>
|
|
);
|
|
```
|
|
|
|
:::tip
|
|
This component uses `<canvas>` to draw freeze frames, so images are subject to [cross-origin restrictions](https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image).
|
|
:::
|
|
|
|
## Examples
|
|
|
|
### WEBP Images
|
|
|
|
Both GIF and WEBP images are supported.
|
|
|
|
```html:preview
|
|
<sl-animated-image
|
|
src="https://shoelace.style/assets/images/tie.webp"
|
|
alt="Animation of a shoe being tied"
|
|
></sl-animated-image>
|
|
```
|
|
|
|
```jsx:react
|
|
import SlAnimatedImage from '@shoelace-style/shoelace/dist/react/animated-image';
|
|
|
|
const App = () => (
|
|
<SlAnimatedImage src="https://shoelace.style/assets/images/tie.webp" alt="Animation of a shoe being tied" />
|
|
);
|
|
```
|
|
|
|
### Setting a Width and Height
|
|
|
|
To set a custom size, apply a width and/or height to the host element.
|
|
|
|
```html:preview
|
|
<sl-animated-image
|
|
src="https://shoelace.style/assets/images/walk.gif"
|
|
alt="Animation of untied shoes walking on pavement"
|
|
style="width: 150px; height: 200px;"
|
|
>
|
|
</sl-animated-image>
|
|
```
|
|
|
|
{% raw %}
|
|
|
|
```jsx:react
|
|
import SlAnimatedImage from '@shoelace-style/shoelace/dist/react/animated-image';
|
|
|
|
const App = () => (
|
|
<SlAnimatedImage
|
|
src="https://shoelace.style/assets/images/walk.gif"
|
|
alt="Animation of untied shoes walking on pavement"
|
|
style={{ width: '150px', height: '200px' }}
|
|
/>
|
|
);
|
|
```
|
|
|
|
{% endraw %}
|
|
|
|
### Customizing the Control Box
|
|
|
|
You can change the appearance and location of the control box by targeting the `control-box` part in your styles.
|
|
|
|
```html:preview
|
|
<sl-animated-image
|
|
src="https://shoelace.style/assets/images/walk.gif"
|
|
alt="Animation of untied shoes walking on pavement"
|
|
class="animated-image-custom-control-box"
|
|
></sl-animated-image>
|
|
|
|
<style>
|
|
.animated-image-custom-control-box::part(control-box) {
|
|
top: auto;
|
|
right: auto;
|
|
bottom: 1rem;
|
|
left: 1rem;
|
|
background-color: deeppink;
|
|
border: none;
|
|
color: pink;
|
|
}
|
|
</style>
|
|
```
|
|
|
|
```jsx:react
|
|
import SlAnimatedImage from '@shoelace-style/shoelace/dist/react/animated-image';
|
|
|
|
const css = `
|
|
.animated-image-custom-control-box::part(control-box) {
|
|
top: auto;
|
|
right: auto;
|
|
bottom: 1rem;
|
|
left: 1rem;
|
|
background-color: deeppink;
|
|
border: none;
|
|
color: pink;
|
|
}
|
|
`;
|
|
|
|
const App = () => (
|
|
<>
|
|
<SlAnimatedImage
|
|
className="animated-image-custom-control-box"
|
|
src="https://shoelace.style/assets/images/walk.gif"
|
|
alt="Animation of untied shoes walking on pavement"
|
|
/>
|
|
|
|
<style>{css}</style>
|
|
</>
|
|
);
|
|
```
|