css CSSアニメーション

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css CSSアニメーション相关的知识,希望对你有一定的参考价值。

/* ショートハンド*/
div.sample {
animation: anime 5s ease 0 infinite alternate;
}

.anim {
    animation-duration: 4s;
    animation-name: anim-bright;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-direction: alternate;
    animation-delay: 3s;
}

@keyframes anime {
0% {width: 50px; height: 50px; background-color: aqua;}
100% {width: 200px; height: 50px; background-color: blue;}
}

以上是关于css CSSアニメーション的主要内容,如果未能解决你的问题,请参考以下文章

html SVGでCSSアニメーション

html CSSでのアニメーション(@keyframes)

css ホバー时矢印が横へ移动アニメーション

markdown CSSで棒グラフ(アニメーション付き)

markdown CSSアニメーションふわふ気気球

css CSSアニメーション(フワッと横から入ってくる)