CSS3 Transitions
CSS3 Transitions
CSS3 전환을 사용하는 방법?
전환 효과를 만들려면 두 가지를 지정해야합니다.
효과를 추가 할 CSS 속성
효과의 지속 시간
참고 : 기간 부분을 지정하지 않으면 기본값은 0이므로 전환 효과가 없습니다.
다음 예는 100 픽셀 * 100 픽셀 빨간색 <div> 요소를 보여줍니다. <div> 요소는 width 속성에 2 초의 전환 효과를 지정했습니다.
예
div {
width: 100px;
height: 100px;
background: red;
-webkit-transition: width 2s; /* Safari */
transition: width 2s;
}
전환 효과는 지정된 CSS 속성 (너비)이 값을 변경하면 시작됩니다.
이제 사용자가 <div> 요소 위에 마우스를 놓을 때 width 속성에 대한 새 값을 지정합니다.
예
div:hover {
width: 300px;
}
[전체소스]
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: red;
-webkit-transition: width 2s; /* For Safari 3.1 to 6.0 */
transition: width 2s;
}
div:hover {
width: 300px;
}
</style>
</head>
<body>
<p><b>Note:</b> This example does not work in Internet Explorer 9 and earlier versions.</p>
<div></div>
<p>Hover over the div element above, to see the transition effect.</p>
</body>
</html>
커서가 요소 밖으로 마우스를 가져 가면 점차 원래 스타일로 다시 변경됩니다.
여러 속성 값 변경
다음 예제에서는 width 및 height 속성에 전환 효과를 추가합니다. 폭은 2 초, 높이는 4 초입니다.
예
div {
-webkit-transition: width 2s, height 4s; /* Safari */
transition: width 2s, height 4s;
}
[전체소스]
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: red;
-webkit-transition: width 2s, height 4s; /* For Safari 3.1 to 6.0 */
transition: width 2s, height 4s;
}
div:hover {
width: 300px;
height: 300px;
}
</style>
</head>
<body>
<p><b>Note:</b> This example does not work in Internet Explorer 9 and earlier versions.</p>
<div></div>
<p>Hover over the div element above, to see the transition effect.</p>
</body>
</html>
게시판 목록
퍼블리셔팁
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 1187 | 기타 | 6년 전 | 2273 | ||
| 1186 | 기타 | 6년 전 | 2106 | ||
| 1185 | 기타 | 6년 전 | 2105 | ||
| 1184 | 기타 | 6년 전 | 2114 | ||
| 1183 | 기타 | 6년 전 | 1870 | ||
| 1182 | 기타 | 6년 전 | 2151 | ||
| 1181 | 기타 | 6년 전 | 1737 | ||
| 1180 | 기타 | 6년 전 | 1940 | ||
| 1179 | 기타 | 6년 전 | 2143 | ||
| 1178 | 기타 | 6년 전 | 2231 | ||
| 1177 | 기타 | 6년 전 | 1763 | ||
| 1176 | 기타 | 6년 전 | 1619 | ||
| 1175 | 기타 | 6년 전 | 2089 | ||
| 1174 | 기타 | 6년 전 | 1651 | ||
| 1173 | 기타 | 6년 전 | 1498 | ||
| 1172 | 기타 | 6년 전 | 1681 | ||
| 1171 | 기타 | 6년 전 | 1371 | ||
| 1170 | 기타 | 6년 전 | 1552 | ||
| 1169 | 기타 | 6년 전 | 1283 | ||
| 1168 | 기타 | 6년 전 | 1412 | ||
| 1167 | 기타 | 6년 전 | 1280 | ||
| 1166 | 기타 | 6년 전 | 1597 | ||
| 1165 | 기타 | 6년 전 | 1340 | ||
| 1164 | 기타 | 6년 전 | 1656 | ||
| 1163 | 기타 | 6년 전 | 1626 | ||
| 1162 | 기타 | 6년 전 | 1582 | ||
| 1161 | 기타 | 6년 전 | 3417 | ||
| 1160 | 기타 | 6년 전 | 3097 | ||
| 1159 | 기타 | 6년 전 | 2207 | ||
| 1158 | 기타 | 6년 전 | 1899 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기