【CSS】脱jQueryでtransformを使用してページアクセス時にズームで傾けた状態の背景画像をアニメーションさせながら元に戻す方法のデモページ

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

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

スポンサーリンク

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

CSS

body {
  overflow-x: hidden;
}

.block {
  width: 100%;
  height: 100vh;
  opacity: 0;
  text-align: center;
  transform: rotate(10deg) scale(1.3);
  transform-origin: center center;
  background: url(/img/w03.jpg) no-repeat center;
  background-size: cover;
}

.active.block {
  opacity: 1;
  transition: opacity 1.4s,transform 1s cubic-bezier(.52,.01,.09,1);
  transition-delay: .2s;
  transform: scale(1) rotate(0);
}

@media screen and (max-width:640px){
  .block {
    height: 40vh;
  }
}

JavaScript

window.onload = function() {
  document.getElementById("block").classList.add("active")
};