테스트 사이트 - 개발 중인 베타 버전입니다

CSS3 전환 효과 지연

· 8년 전 · 1760

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>


댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

게시글 목록

번호 제목
3199
3198
3197
3196
3195
3194
3192
3191
3190
3189
3188
3187
3186
3185
3184
3183
3182
3181
3180
3179
3178
3177
3176
3175
3174
3173
3172
3171
3170
3169