【CSS】脱jQueryでページアクセス時にラインをウィンドウサイズいっぱいに下から上へ動かした後にページを表示するオープニングアニメーションの実装方法のデモページ

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

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

Dummytext01

スポンサーリンク

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

CSS

.line {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 1s 0s cubic-bezier(1,.2,1,1);
  transform: translateY(100%);
  background: #ffd012;
}

.mask {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  transition: all 1.5s 1s;
  opacity: 1;
}

.text {
  margin: 200px 0 0;
  text-align: center;
  font-size: 30px;
}

.active .line {
  transform: translateY(-120%);
}

.active .mask {
  opacity: 0;
  transform: translateY(-120%);
}

JavaScript

window.onload = function() {
  document.querySelector('body').classList.add('active');
};