zoukankan      html  css  js  c++  java
  • 关于CSS动画效果的图片展示

    animation:帧动画
    animation-name:定义绑定Keyframes的动画名称
    @keyframes XXX 定义动画,里面是动画具体内容
    animation-duration:过渡动画进行的时间
    animation-timing-function:过渡动画运动曲线,如先快后慢
    linear 均速
    ease 慢速开始,然后变快
    ease-in 慢速开始
    ease-out 慢速结束
    ease-in-out 慢速开始和结束
    animation-delay:过渡动画几秒之后开始
    animation-iteration-count 动画播放次数
    ————————————其中:属性默认为1,无限播放 infinite
    animation-direction:默认值normal 轮流反向 alternate
    animation-play-state 动画让它暂停还是播放 running paused
    animation-fill-mode 定义对象动画时间之外的状态 forwards
    ————————————————————backwards 在延迟几秒之后,动画开始前,应用第一帧属性

  • 相关阅读:
    HDU 1198
    HDU 1863
    HDU 1879
    HDU 1233
    HDU 1232
    HDU 1829
    HDU 2473
    hdu 1829 A Bug's Life
    hdu 3038 How Many Answers Are Wrong
    hdu 1198 Farm Irrigation
  • 原文地址:https://www.cnblogs.com/hodgson/p/5716926.html
Copyright © 2011-2022 走看看