※デベロッパーツール等でソースコードをご確認ください(Please check using Developer tools)
.block {
line-height: 1;
margin: 200px 0 0;
text-align: center;
opacity: 0;
font-size: 150px;
transition: all 1.2s;
transform: translate3d(0, -10%, 0) rotate3d(1, 1, 0, -30deg);
}
.block.active {
opacity: 1;
transform: translate3d(0, -30%, 0) rotate3d(1, 1, 0, 0deg);
}
@media screen and (max-width:640px){
.block {
width: 100%;
font-size: 50px;
}
}
$(window).on('load', function(){
$(".block").addClass("active");
});