位置:首頁 > 軟件操作教程 > 編程開發(fā) > CSS > 問題詳情

CSS3 實現(xiàn)動畫

提問人:劉團(tuán)圓發(fā)布時間:2020-11-19

    通過@keyf「ames規(guī)則可以創(chuàng)建動畫,原理是將一套CSS樣式逐步從當(dāng)前的樣式更改為新的樣式。 

    使用@keyframes創(chuàng)建動畫時,需要把它綁定到一個選擇器,否則動畫不會有任何效果。需要指定至少兩個CSS3的動畫屬性:規(guī)定動畫的名稱,規(guī)定動畫的時長。

    下面通過一個實例來理解CSS3動畫。

    【例題】創(chuàng)建CSS3動畫

    代碼如下:

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Document</title>

<style>

.d1{

width: 200px;

height: 200px;

background: blue;

animation:myFirstAni 5s;

transform: rotate(0deg);

margin:20px;

}

@keyframes myFirstAni{

0%{margin-left: 0px;background: blue;transform: rotate(0deg);}

50%{margin-left: 500px;background: red;transform: rotate(720deg);}

100%{margin-left: 0px;background: blue;transform: rotate(0deg);}

}

.d2{

width: 200px;

height: 200px;

background: red;

animation:mySecondtAni 5s;

transform: rotate(0deg);

margin:20px;

}

@keyframes mySecondtAni{

0%{margin-left: 0px;background: red;transform: rotateY(0deg);}

50%{margin-left: 500px;background: blue;transform: rotateY(720deg);}

100%{margin-left: 0px;background: red;transform: rotateY(0deg);}

}

</style>

</head>

<body>

<div></div>

<div></div>

</body>

</html>

image.png

繼續(xù)查找其他問題的答案?

相關(guān)視頻回答
回復(fù)(0)
返回頂部