Recent Posts
Recent Comments
Archives
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- useRouter
- deep dive
- Next
- 모던자바스크립트
- 오블완
- js
- vercel
- 코딩테스트
- 프로젝트 셋팅
- 구글 로그인
- 소셜 로그인
- error
- array정적메서드
- 프로그래머스
- 스파르타코딩클럽
- 내일배움캠프
- nextjs
- vscode
- 초기셋팅
- 코드카타
- 자주 까먹는
- 모던 자바스크립트
- React
- 리터럴
- 코테
- CORS
- 티스토리챌린지
- git
- domain
- 셋팅
- Today
- Total
파피루스
[next] image tag 본문
사용 예시
import Image from 'next/image' export default function Page() {
return ( <Image src="/profile.png" width={500} height={500} alt="Picture of the author" /> )
}
props
이름 | isRequired | type | example |
src | O | string | src="/profile.png" |
width | O | integer (px) | |
height | O | integer (px) | |
alt | O | string | |
loader | function | loader={imageLoader} | |
fill | boolean | fill={true} | |
sizes | string | sizes="(max-width: 700px" 100vw, 33vw" | |
quality | integer | quality={80} | |
priority | boolean | priority={true} | |
placeholder | string | placeholder="blur" | |
style | object | style={{ objectFit : "contain" }} | |
onLoad | function | onLoad={event => done())} | |
onError | function | onError={event => fail())} | |
loading | string | loading="lazy" | |
blurDataUrl | string | blurDataURL="data:image/jpeg..." | |
overrideSrc | string | overrideSrc="/seo.png" |
- https://nextjs.org/docs/pages/api-reference/components/image
'Today I Learned' 카테고리의 다른 글
CSR vs. SSR, 무슨 차이인가요? (0) | 2024.07.01 |
---|---|
[next] 왜 Next.js 를 쓸까 (0) | 2024.07.01 |
[next Js] Image tag + typescript generic (0) | 2024.06.26 |
cva와 함께 더 좋은 tailwindcss 사용하기 (0) | 2024.06.25 |
CLS(Cumulative Layout Shift) (0) | 2024.06.21 |