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

Posted

tags:

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

@keyframes slide{
  0% {
    opacity: 0;
    transform: translateX(100px);
    border-bottom: 4px solid gold;
  }
  30% {
    opacity: 0.4;
  }
  
  100% {
    opacity: 1;
    border-bottom: 4px solid gold;
    transform: translateX(0);
  }
}

// ↓使わへん
body {
  width: 80%;
  margin: 0 auto;
}

h1 {
  display: inline-block;
  animation-duration: 2s;
  animation-name: slide;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  padding-bottom: 4px;
}
<h1>こんにちは。</h1>

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

html SVGでCSSアニメーション

css CSSアニメーション

css CSSグラデーションアニメ

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

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

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