css3圖片過濾
發布時間: 2021-01-04 03:34:10
❶ 怎樣用CSS3寫方框從左邊到右過濾
<!DOCTYPE html>
<html>
<head>
<style>
div
{
width:100px;
height:100px;
margin-left: 10px;
background:yellow;
transition:margin-left 2s;
-moz-transition:margin-left 2s; /* Firefox 4 */
-webkit-transition:margin-left 2s; /* Safari and Chrome */
-o-transition:margin-left 2s; /* Opera */
}
div:hover
{
margin-left:300px;
}
</style>
</head>
<body>
<div></div>
<p>請把滑鼠指針放到黃色的 div 元素上,來查看過渡效果。</p>
<p><b>注釋:版</b>本例在 Internet Explorer 中無效。權</p>
</body>
</html>
熱點內容