以下是一些与图像惰性加载相关的代码。
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文件。