CSS3 전환 효과 지연
CSS3 전환 효과 지연
이 transition-delay속성은 전환 효과의 지연을 초 단위로 지정합니다.
다음 예제는 시작하기 전에 1 초의 지연이 있습니다.
예
div {
-webkit-transition-delay: 1s; /* Safari */
transition-delay: 1s;
}
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: red;
-webkit-transition: width 3s; /* Safari */
-webkit-transition-delay: 1s; /* Safari */
transition: width 3s;
transition-delay: 1s;
}
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>
<p><b>Note:</b> The transition effect has a 1 second delay before starting.</p>
</body>
</html>
게시판 목록
퍼블리셔팁
퍼블리싱과 관련된 유용한 정보를 공유하세요.
질문은 상단의 QA에서 해주시기 바랍니다.
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 17 | HTML | 21년 전 | 3712 | ||
| 16 | HTML |
아우겐나이스
|
21년 전 | 6285 | |
| 15 | HTML | 21년 전 | 5610 | ||
| 14 | HTML | 21년 전 | 5810 | ||
| 13 | 13년 전 | 2243 | |||
| 12 | 13년 전 | 9645 | |||
| 11 | 13년 전 | 2592 | |||
| 10 | 13년 전 | 2397 | |||
| 9 | 13년 전 | 3599 | |||
| 8 | 13년 전 | 9451 | |||
| 7 | 13년 전 | 3510 | |||
| 6 | 13년 전 | 5865 | |||
| 5 | 13년 전 | 3321 | |||
| 4 | 13년 전 | 4659 | |||
| 3 | 13년 전 | 4536 | |||
| 2 | 13년 전 | 5477 | |||
| 1 | 13년 전 | 3547 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기