javascript Gatsby / Contentful - image-background.js
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript Gatsby / Contentful - image-background.js相关的知识,希望对你有一定的参考价值。
import React from 'react'
import PropTypes from 'prop-types'
import Image from 'gatsby-image'
const BackgroundImage = ({
title,
alt,
className,
fluid,
fixed
}) => {
return (
<Image
{...{title,alt,fluid,fixed}}
className={['mediaBackground',className].join(' ')}
style={{position: 'absolute'}}
/>
)
}
BackgroundImage.propTypes = {
title: PropTypes.string,
alt: PropTypes.string.isRequired
}
export default BackgroundImage
以上是关于javascript Gatsby / Contentful - image-background.js的主要内容,如果未能解决你的问题,请参考以下文章
javascript gatsby / contentful - createContentTypePages
javascript Gatsby / Contentful - link.js
javascript Gatsby / Contentful - createPages
javascript 结合Gatsby.js风格导入
javascript Gatsby / Webpack - 相对于root导入
javascript Gatsby / Contentful - image-background.js