# Animated Crystal Background | CSS Animation Effects [竹白記事本](https://chupainotebook.blogspot.com/2019/02/css-effect.html),學習紀錄,2019/03/02。 >[Animated Crystal Background | CSS Animation Effects](https://www.youtube.com/watch?v=yl3e7Fp6qFo) ###### tags: `filter` `animation` ## CodePen >[Animated Crystal Background](https://codepen.io/chupai/pen/JzYZbK) <iframe height="265" style="width: 100%;" scrolling="no" title="Animated Crystal Background | CSS Animation Effects" src="//codepen.io/chupai/embed/JzYZbK/?height=265&theme-id=0&default-tab=result" frameborder="no" allowtransparency="true" allowfullscreen="true"> See the Pen <a href='https://codepen.io/chupai/pen/JzYZbK/'>Animated Crystal Background | CSS Animation Effects</a> by Chupai@Design (<a href='https://codepen.io/chupai'>@chupai</a>) on <a href='https://codepen.io'>CodePen</a>. </iframe> ## filter >[filter|MDN](https://developer.mozilla.org/zh-CN/docs/Web/CSS/filter) 將糢糊或顏色偏移等圖形效果應用於元素。濾鏡通常用於調整圖像,背景和邊框的渲染。 - `grayscale`,灰階 - `sepia`,懷舊 - `saturate`,飽和 - `hue-rotate`,色相旋轉 - `invert`,負片 - `opacity`,不透明 - `brightness`,亮度 - `contrast`,對比 - `blur`,糢糊 - `drop-shadow`,下拉陰影 ## animation 屬性 >[animation|MDN](https://developer.mozilla.org/zh-CN/docs/Web/CSS/animation) >[完整解析 CSS 動畫|Oxxo Studio](https://www.oxxostudio.tw/articles/201803/css-animation.html) CSS `animation` 屬性是如下屬性的一個簡寫屬性形式: - `animation-name`,指定動畫名稱。 - `animation-duration`,指定動畫撥出時間。 - `animation-timing-function`,指定動畫撥放的速度。 - `animation-delay`,設定動畫延遲播放時間。 - `animation-iteration-count`,設定動畫播放次數。 - `animation-direction`,設定動畫播放方向。 - `animation-fill-mode`,設定動畫播放前後模式。 - `animation-play-state`,動畫播放或暫停狀態。 ### **`animation-name`** 指定應用的一系列動畫,每個名稱代表一個由 [`@keyframes`](#keyframes) 定義的動畫序列。 ### **`animation-duration`** 動畫撥出的持續時間,數值加上單位 `s` 秒或 `ms` 毫秒,如果時間為負數等同 0 秒,不會進行動畫。 ### **`animation-timing-function`** - `ease`,平滑播放(逐漸變慢)。 - `ease-in`,慢到快(加速)。 - `ease-out`,快到慢(減速)。 - `ease-in-out`,慢到快再到慢(先加速後再減速)。 - `linear`,線性播放(等速)。 - `step-start`、`step-end`,按照關鍵影格的順序一格格進行,不會有中間的演算動畫,兩者差異在於,前者看不到第一格,後者看不到最後一格。 - `cubic-bezier()`,自定義速度。 ### **`animation-delay`** 設定動畫延遲播放時間,數值加上單位 `s` 秒或 `ms` 毫秒,如果時間為負數則是快轉。 ### **`animation-iteration-count`** 動畫播放的次數,預設值為 1 次。 - 次數,指定播放次數。 - `infinite`,無限循環。 ### **`animation-direction`** - `normal`,正常播放,從 0% 到 100%(預設值)。 - `reverse`,反轉播放,從 100% 到 0%。 - `alternate`,正反轉輪流播放,奇數次為 0% 到 100%,偶數次為 100% 到 0%,若動畫播放次數只有一次就只會正常播放。 - `alternate-reverse`,`alternate` 的相反,奇數次為 100% 到 0%,偶數次為 0% 到 100%,若動畫播放次數只有一次就只會反轉播放。 ### **`animation-fill-mode`** 動畫播放前後模式。 - `none`,預設值,不論動畫播放次數,結束後一律返回原始狀態。 - `forwards`,動畫結束後,保持在最後一個影格狀態。 - `backwards`,動畫結束後,保持在第一個影格狀態(但實際測試和 none 效果一樣)。 - `both`,依據動畫的次數或播放方向,保持在第一個影格或最後一個影格狀態,相當實用。 ### **`animation-play-state`** 動畫播放或暫停狀態。 - `running`:,預設值,表示動畫運行。 - `paused`,表示動畫暫停。 ## @keyframes 設定關鍵影格 ```css @keyframes 動畫名稱 {屬性設定;} ``` 屬性設定: 1. `from`,動畫第 1 個影格效果設定,等同 0%。 2. `to`,動畫最後 1 個格影格效果設定,等同 100%。 3. `%`,以動畫撥出時間的百分比,進行特定影格設定。
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up