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

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

css3動畫的屬性有哪些

這篇文章主要講解了“css3動畫的屬性有哪些”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“css3動畫的屬性有哪些”吧!

創(chuàng)新互聯(lián)主打移動網(wǎng)站、成都做網(wǎng)站、網(wǎng)站建設(shè)、網(wǎng)站改版、網(wǎng)絡(luò)推廣、網(wǎng)站維護(hù)、域名注冊、等互聯(lián)網(wǎng)信息服務(wù),為各行業(yè)提供服務(wù)。在技術(shù)實力的保障下,我們?yōu)榭蛻舫兄Z穩(wěn)定,放心的服務(wù),根據(jù)網(wǎng)站的內(nèi)容與功能再決定采用什么樣的設(shè)計。最后,要實現(xiàn)符合網(wǎng)站需求的內(nèi)容、功能與設(shè)計,我們還會規(guī)劃穩(wěn)定安全的技術(shù)方案做保障。

css3動畫屬性有:“@keyframes”、animation、animation-name、animation-duration、animation-delay、animation-direction等等。

css3動畫的屬性有哪些

本教程操作環(huán)境:windows7系統(tǒng)、CSS3&&HTML5版、Dell G3電腦。

css3動畫屬性:

  • @keyframes 規(guī)定動畫。

  • animation 所有動畫屬性的簡寫屬性,除了 animation-play-state 屬性。

  • animation-name 規(guī)定 @keyframes 動畫的名稱。

  • animation-duration 規(guī)定動畫完成一個周期所花費的秒或毫秒。默認(rèn)是 0。

  • animation-timing-function 規(guī)定動畫的速度曲線。默認(rèn)是 "ease"。

  • animation-delay 規(guī)定動畫何時開始。默認(rèn)是 0。

  • animation-iteration-count 規(guī)定動畫被播放的次數(shù)。默認(rèn)是 1。

  • animation-direction 規(guī)定動畫是否在下一周期逆向地播放。默認(rèn)是 "normal"。

  • animation-play-state 規(guī)定動畫是否正在運行或暫停。默認(rèn)是 "running"。

  • animation-fill-mode 規(guī)定對象動畫時間之外的狀態(tài)。

示例:使用css3動畫屬性制作簡單動畫

body {
  background-color: #fff;
  color: #555;
  font-size: 1.1em;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.container {
  margin: 50px auto;
  min-width: 320px;
  max-width: 500px;
}

.element {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  background-color: #0099cc;
  border-radius: 50%;
  position: relative;
  top: 0;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
  from {
    top: 100px;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  25% {
    top: 50px;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  50% {
    top: 150px;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  75% {
    top: 75px;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    top: 100px;
  }
}

@keyframes bounce {
  from {
    top: 100px;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  25% {
    top: 50px;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  50% {
    top: 150px;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  75% {
    top: 75px;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    top: 100px;
  }
}

3、運行效果

css3動畫的屬性有哪些

感謝各位的閱讀,以上就是“css3動畫的屬性有哪些”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對css3動畫的屬性有哪些這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!


網(wǎng)頁題目:css3動畫的屬性有哪些
URL網(wǎng)址:http://weahome.cn/article/ggspjc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部