admin管理员组文章数量:1345199
I am trying a simple example of react-lottie. I am not not getting any errors but the animation doesn't show.
I have tried another tutorial which did it a slightly different way and that had the same result - no errors and no animation.
I have tried switching out the json files for others from the Lottie Files website to no avail.
I don't know how to troubleshoot this as I can't don't know where to start debugging.
Any ideas?
Many thanks
import React, { Component } from 'react'
import Lottie from 'react-lottie'
import * as animationData from './globe.json'
class UncontrolledLottie extends Component {
render(){
const defaultOptions = {
loop: true,
autoplay: true,
animationData: animationData,
rendererSettings: {
preserveAspectRatio: 'xMidYMid slice'
}
};
return(
<div>
<h1>Lottie</h1>
<p>Base animation free from external manipulation</p>
<Lottie options={defaultOptions}
height={400}
width={400}
/>
</div>
)
}
}
export default UncontrolledLottie
I am trying a simple example of react-lottie. I am not not getting any errors but the animation doesn't show.
I have tried another tutorial which did it a slightly different way and that had the same result - no errors and no animation.
I have tried switching out the json files for others from the Lottie Files website to no avail.
I don't know how to troubleshoot this as I can't don't know where to start debugging.
Any ideas?
Many thanks
import React, { Component } from 'react'
import Lottie from 'react-lottie'
import * as animationData from './globe.json'
class UncontrolledLottie extends Component {
render(){
const defaultOptions = {
loop: true,
autoplay: true,
animationData: animationData,
rendererSettings: {
preserveAspectRatio: 'xMidYMid slice'
}
};
return(
<div>
<h1>Lottie</h1>
<p>Base animation free from external manipulation</p>
<Lottie options={defaultOptions}
height={400}
width={400}
/>
</div>
)
}
}
export default UncontrolledLottie
Share
Improve this question
asked May 17, 2020 at 1:45
Ian McGarryIan McGarry
1451 silver badge11 bronze badges
2 Answers
Reset to default 12Try without the * as
import, e.g.:
import animationData from './globe.json'
so animationData needed to be swapped to animationData.default
I think the tutorials are out of sync with the latest version of the libary
本文标签: javascriptReact Lottie not showing animation not showing (web)Stack Overflow
版权声明:本文标题:javascript - React Lottie not showing animation not showing (web) - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743747368a2532007.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论