transition
- 요소에 추가할 css 스타일 전환효과를 설정
- 추가할 전환효과나 지속시간도 설정
property
요소에 추가할 전환효과를 설정
timing -function
전환 효과의 값을 설정
속성값들
●linear: 처음부터 끝까지 일정한 속도
●ease : 전환효과가 천천히 -> 빨라지고 ->천천히 ->끝
●duration : 전환효과를 나타내는 시간을 설정
●delay : 설정한 시간만큼 대기하다 전환효과를 나타냄
HTML 예제 코드
1.
<!DOCTYPE html>
<html lang="en">
<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>transition</title>
<style>
div{
width: 100px;
height: 100px;
float: left;
margin: 30px;
}
#bg-tr{
background-color: gold;
transition: background-color ease 2s;
}
#bg-tr:hover{
background-color: red;
}
#border-tr{
background-color: deeppink;
border: 3px dotted black;
transition: all linear 2s;
}
#border-tr:hover{
background-color: pink;
border: 3px dotted gray;
border-radius: 50%;
}
</style>
</head>
<body>
<h2>transition</h2>
<div id="bg-tr"></div>
<div id="border-tr"></div>
</body>
</html>
1.결과
2.
<!DOCTYPE html>
<html lang="en">
<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>transition2</title>
<style>
h2{
text-align: center;
}
#ex{
position: relative;
width: 800px;
height: 400px;
margin: 0 auto;
border: 5px solid black;
padding: 30px;
}
#no-delay{
width: 100px;
height: 100px;
padding: 20px;
text-align: center;
background-color: gold;
transition: ease 2s;
margin-right: 500px;
margin-bottom: 20px;
}
#no-delay:hover{
background-color: deepskyblue;
margin-left: 500px;
}
#delay{
position: absolute;
right: 0;
width: 100px;
height: 100px;
padding: 20px;
text-align: center;
background-color: blue;
transition: ease 2s;
margin-bottom: 20px;
}
#delay:hover{
background-color: deepskyblue;
margin-right: 500px;
transform: rotate(360deg);
}
/* 박스 전체 주기도 가능*/
</style>
</head>
<body>
<h2>transition2</h2>
<div id="ex">
<div id="no-delay" class="box">
<p>(☞゚ヮ゚)☞</p>
</div>
<div id="delay" class="box">
<p>☜(゚ヮ゚☜)</p>
</div>
</div>
</body>
</html>
결과2
'코딩공부 > HTML,CSS,JavaScript' 카테고리의 다른 글
CSS_우선순위 (0) | 2023.04.03 |
---|---|
CSS_animation (0) | 2023.04.03 |
CSS_transfrom (0) | 2023.04.03 |
CSS_미디어 쿼리 (1) | 2023.03.30 |
CSS_Felx 레이아웃 (0) | 2023.03.30 |