【CSS】脱jQueryでfilterを使用して画像をぼやけた状態からピントが合う状態に変化させるアニメーションの実装方法のデモページ

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

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

スポンサーリンク

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

CSS

.block {
  width: 768px;
  overflow: hidden;
  line-height: 0;
  margin: 50px auto 0;
}
.block img {
  opacity: 0;
  filter: blur(20px) brightness(2);
  transform: scale(1.2);
}
.block.active img {
  opacity: 1;
  filter: blur(0px) brightness(1);
  transform: scale(1);
  transition: all 2.5s ease-out;
}
@media screen and (max-width:640px){
  .block {
    width: 100%;
  }
}
  

JavaScript

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