真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

css3中怎么使用animation屬性實(shí)現(xiàn)背景顏色動態(tài)漸變的效果

本篇內(nèi)容主要講解“css3中怎么使用animation屬性實(shí)現(xiàn)背景顏色動態(tài)漸變的效果”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“css3中怎么使用animation屬性實(shí)現(xiàn)背景顏色動態(tài)漸變的效果”吧!

蚌山網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),蚌山網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為蚌山近1000家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)要多少錢,請找那個(gè)售后服務(wù)好的蚌山做網(wǎng)站的公司定做!

首先我們來看一下CSS3關(guān)鍵幀動畫的基礎(chǔ)知識

什么是關(guān)鍵幀?

關(guān)鍵幀(傳遞點(diǎn))是在動畫中定義更改的幀。我們@keyframes定義元素如何隨每個(gè)關(guān)鍵幀而變化。為了使動畫與其關(guān)鍵幀匹配,您需要將@keyframes規(guī)則的名稱與為元素指定的animation-name屬性的名稱相匹配。

@keyframes規(guī)則的名稱聲明為“ @keyframes +任意名稱 ”。我將寫入0%到100%的關(guān)鍵幀信息。0%表示開始動畫,100%表示結(jié)束時(shí)間。0%from,100%可以用to替換。下面的示例是將背景顏色從紅色更改為橙色到粉紅色的關(guān)鍵框架。@keyframes name {

0% { background: red; }

50% { background: orange; }

100% { background: pink; }

}

說明:對于Chrome和Safari等WebKit瀏覽器,需要供應(yīng)商前綴(-webkit-)。以編寫方式編寫“ -webkit-keyframes ” ,并在@和關(guān)鍵幀之間編寫-webkit-。

animation相關(guān)屬性

animation-name(動畫名)

@keyframes指定中定義的名稱。如果未指定此項(xiàng),則不會執(zhí)行動畫。此外,如果指定的動畫名稱與任何關(guān)鍵幀都不匹配,則不會執(zhí)行該關(guān)鍵幀。

animation-duration(動畫持續(xù)時(shí)間)

通過“秒+ s”指定執(zhí)行一個(gè)動畫的時(shí)間長度。例如,“5秒”持續(xù)5秒。如果為0,則不會執(zhí)行。即使指定了負(fù)值,也會將其視為0。

animation-timing-function(動畫定時(shí)功能)

指定動畫的時(shí)間以及如何繼續(xù)。您可以通過調(diào)整動畫進(jìn)度速度的比例來表達(dá)平滑運(yùn)動。

ease(初期値)

ease-in

ease-out

ease-in-out

linear

animation-delay(動畫延遲)

讀取元素時(shí),從“元素編號+ s”指定“動畫開始”的時(shí)間。例如,“5秒”持續(xù)5秒。初始值0將立即執(zhí)行。

animation-iteration-count(動畫迭代計(jì)數(shù))

指定使用數(shù)字重復(fù)動畫的次數(shù)。infinite要指定無限循環(huán),請指定。

animation-direction(動畫方向)

指定重復(fù)動畫的方向。

normal ...正常方向播放(初始值)

alternate ...在正常和偶數(shù)時(shí)間以相反方向重新生成奇數(shù)次(返回并返回...)

reverse...向后播放

alternate-reverse...反向播放

animation-play-state(動畫播放狀態(tài))

指定動畫暫停(paused)和播放(running)。但是,似乎沒有太多使用。

animation-fill-mode(動畫填充模式)

指定播放動畫之前和之后的狀態(tài)。

none(默認(rèn)值)

forwards..播放后保持最后一個(gè)關(guān)鍵幀的狀態(tài)

backwards...在播放前應(yīng)用第一個(gè)關(guān)鍵幀的狀態(tài)

both … forwards ......向前和向后都應(yīng)用

屬性總結(jié)

animation屬性允許您分別指定每個(gè)屬性的值,用空格分隔。項(xiàng)目可以省略,但動畫名稱必須在執(zhí)行前寫入。建議按以下順序列出。

animation-name(動畫名)

animation-duration(動畫持續(xù)時(shí)間)

animation-timing-function(動畫定時(shí)功能)

animation-delay(動畫延遲)

animation-iteration-count(動畫迭代計(jì)數(shù))

animation-direction(動畫方向)

animation-fill-mode(動畫填充模式)

animation-play-state(動畫播放狀態(tài))body {

animation: test 5s ease 1s infinite forwards;

}

下面我們來看看背景顏色改變的具體內(nèi)容

在了解了基礎(chǔ)的知識之后,我們來詳細(xì)看看具體的實(shí)現(xiàn)方法。首先,將關(guān)鍵幀的名稱設(shè)置為“bg - color”,并將背景顏色設(shè)置為從0到100%的過渡。如果將相同的顏色設(shè)置為0%和100%,則在循環(huán)動畫時(shí)它會平滑移動。我們還將描述您為基于Webkit的瀏覽器啟用的版本。@-webkit-keyframes bg-color {

0% { background-color: #e74c3c; }

20% { background-color: #f1c40f; }

40% { background-color: #1abc9c; }

60% { background-color: #3498db; }

80% { background-color: #9b59b6; }

100% { background-color: #e74c3c; }

}

@keyframes bg-color {

0% { background-color: #e74c3c; }

20% { background-color: #f1c40f; }

40% { background-color: #1abc9c; }

60% { background-color: #3498db; }

80% { background-color: #9b59b6; }

100% { background-color: #e74c3c; }

}

由于此時(shí)指定整個(gè)網(wǎng)頁的背景顏色,body以animation指定屬性。值為“關(guān)鍵幀名稱”,bg-color“更改”在10秒內(nèi)添加,“,10s”指定無限循環(huán)infinite。不要忘記webkit的版本。background-color讓我們指定基本背景顏色作為背景色,為動畫不起作用的情況做準(zhǔn)備。body {

background-color: #e74c3c;

animation: bg-color 10s infinite;

-webkit-animation: bg-color 10s infinite;

}

完整代碼如下:

body {

background-color: #e74c3c;

animation: bg-color 10s infinite;

-webkit-animation: bg-color 10s infinite;

}

@-webkit-keyframes bg-color {

0% { background-color: #e74c3c; }

20% { background-color: #f1c40f; }

40% { background-color: #1abc9c; }

60% { background-color: #3498db; }

80% { background-color: #9b59b6; }

100% { background-color: #e74c3c; }

}

@keyframes bg-color {

0% { background-color: #e74c3c; }

20% { background-color: #f1c40f; }

40% { background-color: #1abc9c; }

60% { background-color: #3498db; }

80% { background-color: #9b59b6; }

100% { background-color: #e74c3c; }

}

p {

font-family: Meiryo, "Hiragino Kaku Gothic Pro W3",sans-serif;

text-align: center;

margin-top: 150px;

color: #fff;

}

到此,相信大家對“css3中怎么使用animation屬性實(shí)現(xiàn)背景顏色動態(tài)漸變的效果”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!


當(dāng)前題目:css3中怎么使用animation屬性實(shí)現(xiàn)背景顏色動態(tài)漸變的效果
瀏覽路徑:http://weahome.cn/article/jpodhe.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部