欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

CSS3 transition過渡效果(變形、變色、旋轉、停頓時間)

老白8年前4495瀏覽0評論

t.gif

三個案例,分別用transition實現了變色 變形 旋轉以及停頓時間。

直接分享代碼:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>菜鳥教程(runoob.com)</title>
<style> 
.demo1 {
    width: 100px;height: 100px;background: red;
    -webkit-transition: width 2s, height 2s,background 2s;
 -webkit-transform 2s; /* 旋轉時間 For Safari 3.1 to 6.0 */
    transition: width 2s, height 2s, transform 2s, background 2s;}
.demo1:hover {width: 300px;height: 200px;background: blue;
    -webkit-transform: rotate(180deg); /* 旋轉角度 Chrome, Safari, Opera */
    transform: rotate(180deg);/* 旋轉角度*/}
/*------------------------------------------------------*/
.demo2{width:100px;height:100px;
 background:red;
 color: #FFF;
 transition:width 2s,height 2s,background 2s;
 -webkit-transition:width 2s,height 2s,background 2s; /* Safari */}
.demo2:hover{width:300px;background:blue;}
/*-----------------------------------------------------------*/
.demo3{width:100px;height:100px;background:red;
 transition-property:width;
 transition-duration:1s;
 transition-delay:1.2s;
/* Safari */
-webkit-transition-property:width; 
-webkit-transition-duration:1s;
-webkit-transition-delay:1.2s;}
.demo3:hover{width:500px;}
/* --------------------------------------------------*/
</style>
</head>
<body>
<p><b>注意:</b>該實例無法在 Internet Explorer 9 及更早 IE 版本上工作。</p>
<div class="demo1">拉長拉寬、變色、旋轉</div>
<br><br>
<div class="demo2">拉長、變色</div>
<br><br>
<div class="demo3">停頓時間、拉長、變色</div>
</body>
</html>

對于transition一定要多多學習和熟悉使用,很多情況下可以省去寫JS的煩惱。