react-lazyload不显示gif图像

时间:2020-05-07 03:28:48

标签: reactjs lazy-loading

以下是一些与图像惰性加载相关的代码。

import LazyLoad from 'react-lazyload';

class SlickSliderWithImage extends Component {
    constructor(props) {
        super(props);
    }

    render() {
        const Loading = <img src="/images/lazy.gif" />
        return (
            <LazyLoad placeholder={<Loading />}>
                <img src="example.jpg" data-src="example.jpg" className="lazyload" />
            </LazyLoad>

    }
}

它不显示lazy.gif文件。

0 个答案:

没有答案