【CSS】@keyframesを使用してページの背景にグラデーションアニメーションを実装する方法のデモページ

※デベロッパーツール等でソースコードをご確認ください(Please check using Developer tools)

このページの内容が難しいと感じた方はこちら

Dummy Text

スポンサーリンク

Web制作会社LIGが運営するWebデザインスクール

CSS

.block {
  position: relative;
  height: 700px;
  background: linear-gradient(90deg, #ffebeb, #daf0ff, #fdf7e4);
  background-size: 250% 250%;
  animation: grad 4s ease infinite;
}
.block p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 50px;
}
@keyframes grad {
  0% { background-position:0% 50% }
  50%{background-position:100% 50% }
  100%{background-position:0% 50%}
}
@media screen and (max-width:640px){
  .block {
    width: 100%;
  }
}