【CSS】How to rotate and twist text to display using translate3d() | Demo page

※Please check using Developer tools

Dummy Text

Sponsored links

CSS

.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;
  }
}

JavaScript

$(window).on('load', function(){
  $(".block").addClass("active");
});