I love that we can do this and change they way they look. Will it be possible to create a list in a database that can uses chips or will it be where we always have to create each one?
we will try to connect databases in all components where possible.
I feel bad, I think I’m the only one asking questions and harrassing you guys
everything is fine, we have already moved on from the dead point, it will be faster further
Lottie for inserting an animated image into an HTML block:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Lottie Animation Example</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.5.9/lottie.min.js"></script>
</head>
<body>
<div id="animation-container" style="width: 300px; height: 160px;"></div>
<script>
const animationContainer = document.getElementById('animation-container');
const animation = bodymovin.loadAnimation({
container: animationContainer,
renderer: 'svg',
loop: true,
autoplay: true,
path: 'https://assets6.lottiefiles.com/packages/lf20_Wo9uEx8Vh6.json'
});
</script>
</body>
</html>
In this example, a
The JavaScript code uses the Lottie library, which loads the animation from the JSON file specified in the path property. Other container properties such as renderer, loop and autoplay can also be customized.
Note that you have to replace the value of your-animation.json to the name of the JSON file with your Lottie animation.
I hope it helped! If you have any questions, please feel free to ask.
I like it
I didn’t think about Lottie animations.