<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>過渡</title>
<style>html
/*過渡,可使一個屬性的值通過一段時間變成另外一個值*/函數
.box1 , .box3{
width: 100px;
height: 100px;
background-color: #f00;
position: absolute;
left: 0;
/*
過渡相關的屬性:
transition-property
要進行過渡的屬性 能夠同時指定多個值,多個值之間使用, 隔開
all 表示全部的屬性都會進行過渡
transition-duration
過渡持續的時間
單位
s 秒
ms 毫秒
1秒 = 1000毫秒htm
transition-delay
過渡的延時it
transition-timing-function
指定過渡的時間函數
ease 默認值 起步慢,而後加速,而後減速中止
linear 勻速運動
ease-in 加速運動
ease-out 減速運動
ease-in-out 先加速後減速io
*/
/*transition: all 2s;*/function
/*transition-property: height , width , background-color;*/
/*!*transition-property: all;*!*/
/*transition-duration: 500ms, 2s, 4s;*/class
/*transition-delay: 1s;*/meta
/*transition-property: left;*/
/*transition-duration: 2s;*/
/*!*transition-timing-function: ease-in-out;*!*/
/*transition-timing-function: steps(6,end);*/
/*transition-timing-function: steps(6,start);*/transition
/*transition 簡寫屬性能夠同時設置全部的過渡的樣式*/
transition:steps(6,end) 2s 2s left;im
}
.box3{
top: 150px;
background-color: #ff0;
transition-timing-function: steps(6,end);
}
.box2:hover .box1,
.box2:hover .box3{
/*width: 200px;*/
/*height: 200px;*/
/*background-color: #ff0;*/
left: 800px;
}
.box2{
height: 400px;
background-color: #bfa;
position: relative;
}
</style>
</head>
<body>
<div class="box2">
<div class="box1">
</div>
<div class="box3">
</div>
</div>
</body></html>