91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

css3動畫屬性是什么

發布時間:2020-12-07 13:53:07 來源:億速云 閱讀:159 作者:小新 欄目:web開發

小編給大家分享一下css3動畫屬性是什么,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

css3的動畫屬性

1、animation-name屬性

animation-name屬性:定義動畫名稱,用于指定由規則定義的動畫的一個或多個名稱。

注:animation-name屬性必須與規則@keyframes配合使用,因為動畫名稱是由@keyframes定義聲明的,如果提供多個屬性值用逗號隔開。

@keyframes規則相當于一個命名空間,后面跟一個名詞,如果在class中的animation-name定義了與之對應的name就可以執行動畫。

2、animation-duration屬性

animation-duration屬性用于指定執行一個周期動畫應該花多長時間。

時間以秒或毫秒指定,并且最初設置為“0”,這意味著動畫即時發生;我們可以指定一個持續時間或多個以逗號分隔的持續時間。

3、animation-timing-function屬性

animation-timing-function屬性是用來設置播放方式的,它可以指定定時函數,該函數定義動畫對象隨時間的速度。它描述了動畫在其持續時間的一個周期內如何進展,允許它在其過程中改變速度。

取值如下:

ease:緩解效果,等同于cubic-bezier(0.25,0.1,0.25,1.0)函數,既立方貝塞爾。

linear:線性效果,速度將從開始到結束穩定。

ease-in:漸顯效果,動畫將緩慢啟動,然后獲得更多加速并穩定到持續時間結束。

ease-out:漸隱效果,動畫將快速啟動,然后減速并穩定到持續時間結束。

ease-in-out:漸顯漸隱效果,它是組合了ease-in和ease-out。動畫或過渡將開始緩慢,在中間加速,然后減速直至結束。

step-start:馬上跳轉到動畫結束狀態,動畫或過渡將突然變為結束狀態并保持在該位置直到動畫結束。

step-end:動畫或過渡保持其開始狀態,直到動畫執行結束,直接跳轉到其動畫結束狀態。

step(<number>[,[start | end]]):

step()可以將轉換的持續時間劃分為相等大小的間隔;或指定輸出百分比的變化是發生在間隔的開始還是結束。

第一個參數number為指定的間隔數,即把動畫分為n步階段性顯示,第二個參數默認為end,設置最后一步狀態,start為結束時的狀態,end為開始時的狀態,若設置與animation-fill-mode的效果沖突,以animation-fill-mode的設置為動畫結束狀態。

css3動畫屬性是什么

cubic-bezier(,,,):特殊的立方賽貝爾曲線效果

4、animation-delay屬性

animation-delay屬性:定義動畫何時開始(開始時間),它允許動畫在應用后的某個時間開始執行,或者在應用之前看似已經開始執行一段時間。

初始值為“0”,這意味著動畫將在應用于元素后立即開始播放。正時間值表示偏移量,該偏移量定義動畫開始之間(通過動畫屬性將動畫應用于元素時)與開始執行時的延遲時間。

我們還可以為animation-delay提供負值。負值,就像'0'一樣,意味著動畫一旦被應用,就會立即執行,但是由延遲的絕對值自動推進,就好像動畫在過去已經啟動了指定的時間,并且它似乎已經在其游戲周期的中途開始了。例如,如果為animation-delay提供“-2S”的值,動畫將立即啟動,只要它被應用,但它將顯示為它已經啟動2s之前,你已經應用它。

5、animation-iteration-count屬性

animation-iteration-count屬性:用于指定動畫停止前播放動畫循環的次數,即:播放次數。

初始值為“1”,表示動畫將從頭到尾播放一次;通常會取“infinite”值,表示無限循環播放。

6、animation-direction屬性

animation-direction屬性:用于指定動畫是否應在某些或所有循環或迭代中反向播放,即:播放方向。

該屬性可能取的值:

normal:正常方向

reverse:動畫反向運行,方向始終與normal相仿

alternate:動畫會循環正反交替運動

7、animation-fill-mode屬性

animation-fill-mode屬性定義動畫在播放后的狀態。更具體地說,它定義了在動畫延遲時間內以及動畫完成執行后應用于元素的樣式。

該屬性可能取的值:

none:默認值,不設置樣式

forwards:結束后保持動畫結束的狀態

backwards:結束后返回動畫開始時狀態

both:結束后可遵循forwards和backwards兩個規則

8、animation-play-state屬性

animation-play-state屬性:用于檢索或設置對象動畫的狀態,即:指定CSS 動畫是正在運行還是暫停。

該屬性可能取的值:

running:默認值,運動;

paused:暫停。

我們也可以使用動畫的簡寫屬性animation屬性來一次性設置動畫的樣式:

/ *一個動畫定義的語法* / 
animation: [animation-name] [animation-duration] [animation-timing-function] [animation-delay] [animation-iteration-count] [animation-direction] [animation-fill-mode] [animation-play-state];
/ *兩個動畫定義,用逗號隔開* / 
animation:animation: [animation-name] [animation-duration] [animation-timing-function] [animation-delay] [animation-iteration-count] [animation-direction] [animation-fill-mode] [animation-play-state],           
                      [animation-name] [animation-duration] [animation-timing-function] [animation-delay] [animation-iteration-count] [animation-direction] [animation-fill-mode] [animation-play-state];

css3動畫屬性和@keyframes規則創建簡單動畫:

代碼實例:

HTML代碼:

<div class="container">
  <p class="text">
    php
  </p>
</div>

css代碼:

@import url(http://fonts.googleapis.com/css?family=Gentium+Basic:400,700,400italic,700italic);
body {
  background-color: #F5F5F5;
  color: #555;
  font-size: 1.1em;
  font-family: 'Gentium Basic', serif;
}

.container {
  margin: 50px auto;
  max-width: 700px;
}

.text {
  font-size: 3em;
  font-weight: bold;
  color: #009966;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-animation: fall 4s infinite;
  animation: fall 4s infinite;
}

@-webkit-keyframes fall {
  from, 15% {
    -webkit-transform: rotate(0) translateX(0);
    transform: rotate(0) translateX(0);
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(.07, 2.02, .67, .57);
    animation-timing-function: cubic-bezier(.07, 2.02, .67, .57);
  }
  50%, 60% {
    -webkit-transform: rotate(90deg) translateX(0);
    transform: rotate(90deg) translateX(0);
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(.13, .84, .82, 1);
    animation-timing-function: cubic-bezier(.13, .84, .82, 1);
  }
  85%, to {
    -webkit-transform: rotate(90deg) translateX(200px);
    transform: rotate(90deg) translateX(200px);
    opacity: 0;
  }
}

@keyframes fall {
  from, 15% {
    -webkit-transform: rotate(0) translateX(0);
    transform: rotate(0) translateX(0);
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(.07, 2.02, .67, .57);
    animation-timing-function: cubic-bezier(.07, 2.02, .67, .57);
  }
  50%,60% {
    -webkit-transform: rotate(90deg) translateX(0);
    transform: rotate(90deg) translateX(0);
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(.13, .84, .82, 1);
    animation-timing-function: cubic-bezier(.13, .84, .82, 1);
  }
  85%,to {
    -webkit-transform: rotate(90deg) translateX(200px);
    transform: rotate(90deg) translateX(200px);
    opacity: 0;
  }
}

以上是“css3動畫屬性是什么”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永善县| 淮安市| 宜宾县| 大英县| 万宁市| 保康县| 二连浩特市| 民和| 林口县| 长顺县| 缙云县| 眉山市| 西峡县| 阆中市| 麦盖提县| 新干县| 奉节县| 大荔县| 富蕴县| 温宿县| 化隆| 万山特区| 静海县| 淮北市| 东明县| 沁水县| 东乌珠穆沁旗| 平阴县| 鲁山县| 洪洞县| 曲麻莱县| 伊通| 仪陇县| 呼玛县| 英吉沙县| 丽江市| 泰来县| 延边| 昭平县| 牡丹江市| 青海省|