<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> 트랜지션 대상과 진행 시간 지정하기 </title>
<style>
.box {
margin:20px auto;
width:100px;
height:100px;
background-color:#07f;
border: 1px solid black;
transition-property: width,height; /*트랜지션 대상 - 너비, 높이*/
transition-duration:2s, 1s; /*트랜지션 시간 -2초 1초*/
}
.box:hover {
width:200px;
height:120px;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
'css' 카테고리의 다른 글
11장 실습 1 (0) | 2023.04.03 |
---|---|
11장 예제 - 트랜지션 속성 한꺼번에 지정하기 (0) | 2023.04.03 |
11장 예제- skew()함수를 텍스트 영역에 적용하기 (0) | 2023.04.03 |
11장 예제 - rotate()함수 (0) | 2023.04.03 |
11장 예제 scale()함수를 사용해 확대.축소하기 (0) | 2023.04.03 |