Skip to content
๊ฑฐ์‹œ์ฝ”๋”ฉํ•™๐Ÿ’ฐ
ThreadsGithub

CSS ๋กœ ๋งŒ๋“  ์นด๋“œ ํ™€๋กœ๊ทธ๋žจ ํšจ๊ณผ ใ„ทใ„ท

โ€” CSS โ€” 5 min read

๐Ÿธ ๋ฏธ๋ฆฌ๋ณด๊ธฐ

๊ฒฐ๊ณผ๋ฌผ

๐Ÿง‘โ€๐Ÿ’ป ๊นƒํ—ˆ๋ธŒ ๋งํฌ

Github ์‹ค์Šต ๋งํฌ

CSS ์†์„ฑ ์•Œ์•„๋ณด๊ธฐ

transform : perspective(), rotateY(), rotateX()

CSSย transformย ์†์„ฑ์œผ๋กœ ์š”์†Œ์— ํšŒ์ „, ํฌ๊ธฐ ์กฐ์ ˆ, ๊ธฐ์šธ์ด๊ธฐ, ์ด๋™ ํšจ๊ณผ๋ฅผ ๋ถ€์—ฌํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.ย transform์€ CSSย ์‹œ๊ฐ์  ์„œ์‹ ๋ชจ๋ธ์˜ ์ขŒํ‘œ ๊ณต๊ฐ„์„ ๋ณ€๊ฒฝํ•ฉ๋‹ˆ๋‹ค.

์ถœ์ฒ˜ : mdn transform ๋ฌธ์„œ

perspective()

The perspective CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.

perspective ์†์„ฑ์€ ๋ฐฐ์น˜๋œ ์š”์†Œ์— ์›๊ทผ๊ฐ์„ z=0 ํ‰๋ฉด๊ณผ ์‚ฌ์šฉ์ž ์‚ฌ์ด์˜ ๊ฑฐ๋ฆฌ๋ฅผ ๊ฒฐ์ •ํ•ฉ๋‹ˆ๋‹ค.

์ถœ์ฒ˜ : mdn perspective ๋ฌธ์„œ

์ฆ‰ perspective()๋Š” ์š”์†Œ์— ์›๊ทผ๊ฐ์„ ์ฃผ๋Š” ์†์„ฑ์ž…๋‹ˆ๋‹ค. ํ‰๋ฉด๊ณผ ์‚ฌ์šฉ์ž ์‚ฌ์ด์˜ ๊ฑฐ๋ฆฌ๋ฅผ ๋งŒ๋“ค์–ด ์›๊ทผ๊ฐ์„ ํ‘œํ˜„ํ•ฉ๋‹ˆ๋‹ค.

์œ„ ์˜ˆ์‹œ์—์„œ๋Š” "perspective(1000px)"์„ ์‚ฌ์šฉํ•ด์„œ 1000px ๋–จ์–ด์ ธ ๋ณด์ด๊ฒŒ ํ–ˆ์Šต๋‹ˆ๋‹ค.

rotateY(), rotateX()

The rotateX() CSS function defines a transformation that rotates an element around the x-axis (horizontal) without deforming it. Its result is a transform-function data type.

rotateX() ํ•จ์ˆ˜๋Š” ์š”์†Œ๋ฅผ ๋ณ€ํ˜•ํ•˜์ง€ ์•Š๊ณ , X์ถ•(๊ฐ€๋กœ)๋ฅผ ์ค‘์‹ฌ์œผ๋กœ ํšŒ์ „ํ•˜๋Š” ๋ณ€ํ˜•์„ ์ •์˜ํ•ฉ๋‹ˆ๋‹ค. ๊ทธ ๊ฒฐ๊ณผ๋Š” transform-function ๋ฐ์ดํ„ฐ ์œ ํ˜•์ž…๋‹ˆ๋‹ค.

์ถœ์ฒ˜ : mdn rotateX ๋ฌธ์„œ

X์˜ ๊ฒฝ์šฐ๋Š” X์ถ•์„ ์ ‘๋Š”๋‹ค๋Š” ๋Š๋‚Œ(์ˆ˜์ง ๋ฐฉํ–ฅ)์œผ๋กœ ์ ‘ํžˆ๊ฒŒ ๋ฉ๋‹ˆ๋‹ค.

๋ฐ˜๋Œ€๋กœ Y์˜ ๊ฒฝ์šฐ๋Š” Y์ถ•์„ ์ ‘๋Š”๋‹ค๋Š” ๋Š๋‚Œ(์ˆ˜ํ‰ ๋ฐฉํ–ฅ)์œผ๋กœ ์ ‘ํžˆ๊ฒŒ ๋ฉ๋‹ˆ๋‹ค.

์ถœ์ฒ˜๋ฅผ ๋ˆŒ๋Ÿฌ ์‹œ๊ฐ์ ์œผ๋กœ ํ™•์ธํ•˜๋ฉด ์ข‹์Šต๋‹ˆ๋‹ค.

container.addEventListener('mousemove', (e) => {
let x = e.offsetX;
let y = e.offsetY;
let rotateY = 0.05 * x - 20;
let rotateX = 0.05 * y - 20;
overlay.style = `background-position : ${x/3 + y/3}%`
container.style = `transform : perspective(1000px) rotateY(${rotateY}deg) rotateX(${rotateX}deg)`;
})

์œ„ ์˜ˆ์‹œ์—์„œ๋Š”, ๋งˆ์šฐ์Šค๋ฅผ ์˜ฌ๋ ธ์„๋•Œ ์‚ฌ์ง„์„ ๋Œ์•„๊ฐ€๊ฒŒ ํ•˜๋Š” ์šฉ๋„๋กœ ์‚ฌ์šฉํ–ˆ์Šต๋‹ˆ๋‹ค. ๋งˆ์šฐ์Šค์˜ x, y ์ขŒํ‘œ๋ฅผ ๊ณ„์‚ฐํ•˜์—ฌ ์ตœ๋Œ€ 20๋„, ์ตœ์†Œ -20๋„๊นŒ์ง€ ๋Œ์•„๊ฐ‘๋‹ˆ๋‹ค.

mix-blend-mode

ํ•ด๋‹น ์†์„ฑ์€, ํฌํ† ์ƒต์„ ํ•ด๋ณธ ์‚ฌ๋žŒ์ด๋ผ๋ฉด ์•Œ๋งŒํ•œ multiply, screen ๋“ฑ๊ณผ ๊ฐ™์ด ๋ธ”๋ Œ๋” ํšจ๊ณผ๋ฅผ ์ž…ํž™๋‹ˆ๋‹ค.

mix-blend-mode: normal;
mix-blend-mode: multiply;
mix-blend-mode: screen;
mix-blend-mode: overlay;
mix-blend-mode: darken;
mix-blend-mode: lighten;
mix-blend-mode: color-dodge;
mix-blend-mode: color-burn;
mix-blend-mode: hard-light;
mix-blend-mode: soft-light;
mix-blend-mode: difference;
mix-blend-mode: exclusion;
mix-blend-mode: hue;
mix-blend-mode: saturation;
mix-blend-mode: color;
mix-blend-mode: luminosity;

filter

The filter CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders.

Several functions, such as blur() and contrast(), are available to help you achieve predefined effects.

filter ์†์„ฑ์€ ์š”์†Œ์— ํ๋ฆผ ๋˜๋Š” ์ƒ‰์ƒ ์ด๋™๊ณผ ๊ฐ™์€ ๊ทธ๋ž˜ํ”ฝ ํšจ๊ณผ๋ฅผ ์ ์šฉํ•ฉ๋‹ˆ๋‹ค. filter๋Š” ์ผ๋ฐ˜์ ์œผ๋กœ ์ด๋ฏธ์ง€, ๋ฐฐ๊ฒฝ ๋ฐ ํ…Œ๋‘๋ฆฌ์˜ ๋ Œ๋”๋ง์„ ์กฐ์ •ํ•˜๋Š” ๋ฐ ์‚ฌ์šฉ๋ฉ๋‹ˆ๋‹ค.

blur() ์™€ contrast()์™€ ๊ฐ™์€ ์—ฌ๋Ÿฌ ํ•จ์ˆ˜๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ๋ฏธ๋ฆฌ ์ •์˜๋œ ํšจ๊ณผ๋ฅผ ์–ป์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.

mdn filter ๊ณต์‹ ๋ฌธ์„œ

์œ„ ์˜ˆ์‹œ์—์„œ๋Š” overlay์˜ ๋ฐ๊ธฐ์™€ ํˆฌ๋ช…๋„๋ฅผ ์กฐ์ •ํ•˜๋Š” ๋ฐ ์‚ฌ์šฉํ–ˆ์Šต๋‹ˆ๋‹ค.

filter: brightness(1.0) opacity(0.9);

background-position

The background-position CSS property sets the initial position for each background image. The position is relative to the position layer set by background-origin.

background-position ์†์„ฑ์€ ๊ฐ ๋ฐฐ๊ฒฝ ์ด๋ฏธ์ง€์˜ ์ดˆ๊ธฐ ์œ„์น˜๋ฅผ ์„ค์ •ํ•ฉ๋‹ˆ๋‹ค. ์œ„์น˜๋Š” background-origin ์„ค์ •๋œ ์œ„์น˜ ๋ ˆ์ด์–ด์— ์ƒ๋Œ€์ ์ž…๋‹ˆ๋‹ค.

mdn background-position ๊ณต์‹ ๋ฌธ์„œ

background ์œ„์น˜๋ฅผ ์ •ํ•˜๋Š” ์†์„ฑ์ž…๋‹ˆ๋‹ค.

์œ„ ์˜ˆ์‹œ์—์„œ๋Š” overlay๋ฅผ ์ด๋™์‹œํ‚ค๊ธฐ ์œ„ํ•ด ์‚ฌ์šฉํ–ˆ์Šต๋‹ˆ๋‹ค.

overlay.style = `background-position : ${x/3 + y/3}%`

background-size

The background-size CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.

background-size ์†์„ฑ์€ ์š”์†Œ์˜ ๋ฐฐ๊ฒฝ ์ด๋ฏธ์ง€ ํฌ๊ธฐ๋ฅผ ์„ค์ •ํ•ฉ๋‹ˆ๋‹ค. ์ด๋ฏธ์ง€๋Š” ์ž์—ฐ์Šค๋Ÿฌ์šด ํฌ๊ธฐ๋กœ ๋‘๊ฑฐ๋‚˜, ๋Š˜๋ฆฌ๊ฑฐ๋‚˜, ์‚ฌ์šฉ ๊ฐ€๋Šฅํ•œ ๊ณต๊ฐ„์— ๋งž๊ฒŒ ์ œํ•œํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.

mdn background-size ๊ณต์‹ ๋ฌธ์„œ

๋ฐฐ๊ฒฝ ์‚ฌ์ด์ฆˆ๋ฅผ ๊ฒฐ์ •ํ•˜๋Š” ์†์„ฑ์ž…๋‹ˆ๋‹ค.

์œ„ ์˜ˆ์‹œ์—์„œ๋Š” cover ๋ฅผ ํ†ตํ•ด card ์‚ฌ์ด์ฆˆ๋ฅผ ๋ฐ•์Šค ํฌ๊ธฐ์— ๋งž์ถ”๊ฑฐ๋‚˜, overlay ํฌ๊ธฐ๋ฅผ 1.5๋ฐฐ ํ‚ค์šฐ๋Š” ์šฉ๋„๋กœ ์‚ฌ์šฉํ–ˆ์Šต๋‹ˆ๋‹ค.

background-size: cover;
background-size: 150% 150%;

์ฃผ์˜ํ•ด์•ผํ•  ๋ถ€๋ถ„์€ contain๊ณผ cover ์ž…๋‹ˆ๋‹ค.

cover๋Š” ๋น„์œจ์„ ๋งž์ถ”๋‚˜, ๋น„์œจ์ด ๋‹ค๋ฅด๋ฉด ์ž˜๋ฆฝ๋‹ˆ๋‹ค. ํ•˜์ง€๋งŒ contain์€ ์ด๋ฏธ์ง€๋ฅผ ์™„๋ฒฝํ•˜๊ฒŒ ๋งž์ถ”๋‚˜, ๊ณต๋ฐฑ์ด ์ƒ๊ธธ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.

์ƒํ™ฉ์— ๋”ฐ๋ผ ์•Œ๋งž๊ฒŒ ์‚ฌ์šฉํ•ฉ๋‹ˆ๋‹ค.

๐Ÿ“Œ ์ฐธ๊ณ ์ž๋ฃŒ

์œ ํŠœ๋ธŒ, ์ฝ”๋”ฉ์• ํ”Œ

profile image

@dev_frogsoo

ํฅ๋ฏธ๋กญ๊ณ  ์žฌ๋ฏธ์žˆ๋Š” ์ด์•ผ๊ธฐ๋“ค์„ ๋ชจ์•„๋‘” ๊ณต๊ฐ„์ž…๋‹ˆ๋‹ค.

ยฉ 2024 by ๊ฑฐ์‹œ์ฝ”๋”ฉํ•™๐Ÿ’ฐ. All rights reserved.
Theme by LekoArts