Advertisement
Patrikrizek

lesson-11-text-reveal

Jun 20th, 2022
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.50 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>Document</title>
  8.     <style>
  9.         body {
  10.             background-color: rgb(48, 48, 48);
  11.             padding: 50px;
  12.         }
  13.  
  14.         .title {
  15.             color: white;
  16.             text-transform: uppercase;
  17.             line-height: 40px;
  18.             font-family: Arial, Helvetica, sans-serif;
  19.             font-weight: lighter;
  20.         }
  21.        
  22.         .title-content {
  23.             display: block;
  24.             opacity: 0;
  25.             animation: revealText .5s forwards;
  26.         }
  27.  
  28.         .title-second {
  29.             animation-delay: .17s;
  30.         }
  31.  
  32.         .title-third {
  33.             animation-delay: .25s;
  34.         }
  35.  
  36.         .title-fourth {
  37.             animation-delay: .325s;
  38.         }
  39.  
  40.         @keyframes revealText {
  41.             from {
  42.                 transform: translateY(20px);
  43.             }      
  44.             to {
  45.                 opacity: 1;
  46.                 transform: none;
  47.             }    
  48.         }
  49.     </style>
  50. </head>
  51. <body>
  52.     <h1 class="title">
  53.         <span class="title-content">Lear</span>
  54.         <span class="title-content title-second">keep learning.</span>
  55.         <span class="title-content title-third">You will always</span>
  56.         <span class="title-content title-fourth">regret if you don't.</span>
  57.     </h1>
  58. </body>
  59. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement