1
私のウェブサイトには複数のテーマがあります。私はこのようなイメージにsrcSet
を追加しようとしています:スタイル設定されたコンポーネントのテーマイメージにsrcSetを追加
export const Header = styled.img.attrs({
src: props => props.theme.images.Header1x,
srcSet: `${props => props.theme.images.Header1x} 1x, ${props => props.theme.images.Header2x} 2x, ${props => props.theme.images.Header3x} 3x`,
})`
height: 42px
`;
src
属性が適切であるが、srcSet
ではありません。
<img src="/images/header.jpg" srcset="function (props) {
return props.theme.images.Header1x;
} 1x, function (props) {
return props.theme.images.Header2x;
} 2x, function (props) {
return props.theme.images.Header3x;
} 3x" class="sc-VJcYb epAqoN">
styled-components
テーマ機能は素晴らしいです、と私はたいすべてのテーマを整理したままにしておきますが、それではsrcSet
を正しく構築する方法は考えられません。誰もが何らかの戦略を持っているか、まったく別の方向に進む必要がありますか?