CSS 中的動畫
Animation in CSS has two parts - @keyframes and animation-*.
The @keyframes at-rule
The first part requires us to define the @keyframes.
This lets us specify the CSS-style that should apply at the different points in the duration of the animation.
The different points of time are specified in % values. Any number of offsets positions between 0 and 100 percent can be specified.
from can be used for offset 0%, and to is the same as the offset 100%.
@keyframes anim-name { from { css-style-a } to { css-style-b } }
Below the css style has been specified for three time-points for one property - background-color.
@keyframes colorit { 0% { background-color: red; } 50% { background-color: yellow; } 100% { background-color: silver; } }
It may as well specify multiple properties.
@keyframes colorit { 0% { background-color: red; left: 0px; top: 50px; } 50% { background-color: yellow; left: 50px; top: 75px; } 100% { background-color: silver; left: 200px; top: 25px; } }
animation-* properties
Here is a list of properties that can be used to control how the transition of styles will be done to give the UI/UX of an animation.
- animation-composition
- animation-delay
- animation-direction
- animation-duration
- animation-fill-mode
- animation-iteration-count
- animation-name
- animation-play-state
- animation-range
- animation-range-end
- animation-range-start
- animation-timeline
- animation-timing-function
Each of this sub-property sets some aspect of the animation.
Below is the definition for @keyframes named colorit to be run for 3 seconds.
div.box { ... animation-name: colorit; animation-duration: 3s; ... }
All the sub-properties can be specified in a single line using the animation shorthand.
animation: 3s colorit;
The browser does the math required and renders the appropriate animation.
Similarly, the animation properties allow the control of delay, timing, number of times (iteration), direction etc. for the designer to achieve his vision.
以上是CSS 中的動畫的詳細內容。更多資訊請關注PHP中文網其他相關文章!

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

在本週的平台新聞綜述中,Chrome引入了一個用於加載的新屬性,Web開發人員的可訪問性規範以及BBC Move

有很多分析平台可幫助您跟踪網站上的訪問者和使用數據。也許最著名的是Google Analytics(廣泛使用)
