※デベロッパーツール等でソースコードをご確認ください(Please check using Developer tools)
.block.active {
animation: clipPath 3s cubic-bezier(.220, .60, .350, 1) 0s 1 forwards;
}
@keyframes clipPath {
0% {
clip-path: circle(0 at 50% 50%);
}
100% {
clip-path: circle(100% at 50% 50%);
}
}
window.onload = function() {
document.getElementById("block").classList.add("active")
};