transition

English [tr?n?z??n] US [tr?n?z???n, -?s?s??n, -?s??-]

n. ??, ??, ?? [Le] ??

3?? ??: ?? ??: ?? ?? ??: ??? ??: ???

CSS3 ?? ?? ???

??: ??? ?? ??? ?????

??: Composite ??. ??? ??? ? ??? ????? ?????.

CSS3? ?? ??? ?? ??? ?? ? ????. ?? ??? ??, ?? ??, ?? ?? ? ?? ??? ?????



CSS3 ?? ?? ?

<!DOCTYPE html>
<html>
<head>
<style> 
div
{
width:100px;
height:100px;
background:yellow;
transition:width 2s;
-moz-transition:width 2s; /* Firefox 4 */
-webkit-transition:width 2s; /* Safari and Chrome */
-o-transition:width 2s; /* Opera */
}

div:hover
{
width:300px;
}
</style>
</head>
<body>

<div></div>

<p>請(qǐng)把鼠標(biāo)指針放到黃色的 div 元素上,來查看過渡效果。</p>

<p><b>注釋:</b>本例在 Internet Explorer 中無效。</p>

</body>
</html>

???? ?? ?

??? ????? ??? "???? ??" ??? ?????