【CSS】How to implement an animation that slides in a character string such as text from the underline/CSS Slide-In text from bottom | Demo page

※Please check using Developer tools

Commentary

Sponsored links

CSS

.list {
  width: 300px;
  margin: 50px auto 0;
}

.list li {
  overflow: hidden;
  margin: 0 0 5px;
  border-bottom: 1px dashed #000;
}

.list li p {
  padding: 0 0 5px;
  transform: translateY(100%);
  transition: transform 1s ease .7s;
}

.list.active li p {
 transform: translateY(0);
}
  

JavaScript

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