μλ νμΈμ κ³°μ΄μμ:)
μ€λμ background μμ± μ€μ λ²μ λν΄μ μμλ³΄λ €κ³ ν©λλ€.
cssμμλ λ§μ΄λ€ μ¬μ©νμλ μμ±μ λλ€.
background μμ±λ€
1. background-image
2. background-color
3. background-repeat
4. background-position
μ°μ 첫 λ²μ§Έ background-image μμ±μ λλ€.
μ ν€λμλ μ μ©λμ΄μλ μ΄λ―Έμ§ μμ±μ΄κΈ°λ νκ³ μ!
background-image λ?
ν΄λΉ HTML μμμ λ°°κ²½μΌλ‘ λνλ λ°°κ²½ μ΄λ―Έμ§(image)λ₯Ό μ€μ ν©λλ€.
μ€μ λ λ°°κ²½ μ΄λ―Έμ§λ κΈ°λ³Έ μ€μ μΌλ‘ HTML μμ μ 체μ κ±Έμ³ λ°λ³΅λμ΄ λνλ©λλ€.
μμ
<style>
div {
background-image: url("μ΄λ―Έμ§ μ£Όμ");
}
</style>
μμ μμ€λ‘λ μ΄ν΄κ° νλμ€ κ±° κ°μμ μ½λ λΈλ‘κ³Ό htmlλΈλ‘μ μΆκ°ν΄λ³΄κ² μ΅λλ€.
μμ 보μλ 건 DIVμμμ μ°μ μ΄ν΄λ₯Ό λκΈ° μν border μ€νμΌμ μ£Όμλλ°μ
μ΄λ κ² λ³΄μλ― divμμ λ· λ°°κ²½μ λμ΄ λ΄λ¦¬λ μ΄λ―Έμ§λ₯Ό μμ±μμ μΆκ°ν΄μ μ μ©λλ λͺ¨μ΅μ νμΈν μ μμ΅λλ€.
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>κ³°μ΄λ€ BACKGROUND μμ±</title>
<style>
#example {
background-image: url("https://tistory3.daumcdn.net/tistory/4358276/skin/images/back_snow.gif");
}
</style>
</head>
<body>
<div style="border:1px solid red; width:300px; height:300px;" id="example">
</div>
</body>
</html>
μμ λ λ΄λ¦¬λ μ½λ λΈλ‘μ λλ€.
νμνμ λΆμ μ°Έκ³ ν΄μ£ΌμΈμ ^^
background-color λ?
ν΄λΉ HTML μμμ λ°°κ²½μΌλ‘ λνλ λ°°κ²½ μμ(color)μ μ€μ ν©λλ€.
μμ
<style>
div {
background-color : red;
}
</style>
μμ λ κ°λ¨ν©λλ€.
color μμ±
red, blueλ± μ΄λ―Έ μ μλ μ
#000, #FFFFFF λ±μ 16μ§μ μμ μ½λ
rgb(255, 255, 255) λ±μ rgb μμ
rgba(200, 100, 150, 0.5) λ±μ μν(ν¬λͺ λ)κ° μ μ©λ rgba μμ
colorμμ±μμ μ μ μλ― λ€μνκ² μμ±μ μ€ μ μμ΅λλ€.
μμ html λΈλ‘ μ½λμ λλ€.
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>κ³°μ΄λ€ BACKGROUND μμ±</title>
<style>
#example2 {
background-color : red;
}
</style>
</head>
<body>
<div style="border:1px solid red; width:300px; height:300px;" id="example2">
</div>
</body>
</html>
μ°Έκ³ μ© html μ½λ λΈλ‘μ λλ€.
background-repeat λ?
λ°°κ²½ μ΄λ―Έμ§λ κΈ°λ³Έ μ€μ μΌλ‘ μνκ³Ό μμ§ λ°©ν₯μΌλ‘ λͺ¨λ λ°λ³΅λμ΄ λνλ©λλ€.
background-repeat μμ±μ μ΄μ©νλ©΄ μ΄λ¬ν λ°°κ²½ μ΄λ―Έμ§λ₯Ό μνμ΄λ μμ§ λ°©ν₯μΌλ‘λ§ λ°λ³΅λλλ‘ μ€μ ν μ μμ΅λλ€.
μν μμ
background-repeat: repeat-x; μμ± μΆκ°νλ©΄ λ©λλ€.
μν μμ€
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>κ³°μ΄λ€ BACKGROUND μμ±</title>
<style>
#example3 {
background-image: url("https://tistory3.daumcdn.net/tistory/4358276/skin/images/back_snow.gif");
background-repeat: repeat-x;
}
</style>
</head>
<body>
<div style="border:1px solid red; width:100%; height:300px;" id="example3">
</div>
</body>
</html>
μμ§ μμ
background-repeat: repeat-y; μμ± μΆκ°νλ©΄ λ©λλ€.
μμ§ μμ€
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>κ³°μ΄λ€ BACKGROUND μμ±</title>
<style>
#example4 {
background-image: url("https://tistory3.daumcdn.net/tistory/4358276/skin/images/back_snow.gif");
background-repeat: repeat-y;
}
</style>
</head>
<body>
<div style="border:1px solid red; width:100%; height:600px;" id="example4">
</div>
</body>
</html>
μ°Έκ³ μ© μμ μμ€μ λλ€.
background-position λ?
background-position μμ±μ λ°λ³΅λμ§ μλ λ°°κ²½ μ΄λ―Έμ§μ μλ μμΉ(relative position)λ₯Ό μ€μ ν©λλ€.
μ€λ₯Έμͺ½ μμΉ μμ
μ€λ₯Έμͺ½μ λνλλ κ±Έ νμΈν μ μμ΅λλ€.
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>κ³°μ΄λ€ BACKGROUND μμ±</title>
<style>
#example5 {
background-image: url("https://tistory3.daumcdn.net/tistory/4358276/skin/images/back_snow.gif");
background-repeat: no-repeat;
background-position: top right;
}
</style>
</head>
<body>
<div style="border:1px solid red; width:100%; height:300px;" id="example5">
</div>
</body>
</html>
μ°Έκ³ μ© μμ μμ€
μ€κ° μμΉ μμ
μ€κ°μ λνλλκ±Έ νμΈν μ μμ΅λλ€.
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>κ³°μ΄λ€ BACKGROUND μμ±</title>
<style>
#example6 {
background-image: url("https://tistory3.daumcdn.net/tistory/4358276/skin/images/back_snow.gif");
background-repeat: no-repeat;
background-position: top center;
}
</style>
</head>
<body>
<div style="border:1px solid red; width:100%; height:300px;" id="example6">
</div>
</body>
</html>
μ΄ν΄μ λμμ΄ λλ μ¬μ§ μ¬λ €λλ¦¬κ² μ΅λλ€.
λ§μ½ μ€κ°μ μμΉνκ² νκ³ μΆμΌλ©΄ μμ top λλ bottomμ λΉΌκ³ ν΄ λ³΄μκΈΈ λ°λλλ€ ^^
μ΄κ²μΌλ‘ background μμ± ν¬μ€ν μ λ§μΉκ² μ΅λλ€.
κΆκΈνμ μ μ λκΈ λ¨κ²¨μ£ΌμΈμ!
ꡬλ κ³Ό 곡κ°μ μ¬λμ λλ€ ^^
'κ°λ°κ΄λ ¨ > CSS' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
Parallax Scrolling CSSμ€μ λ§μΌλ‘ ν°μ€ν 리 μ μ© λ² (0) | 2022.09.14 |
---|
λκΈ