Advertisement
CosminVarlan

HTML_Buton_animat

Mar 2nd, 2020
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="ro">
  3.     <head>
  4.         <title>Cosmin VΓ’rlan</title>
  5.         <meta charset="utf-8" />
  6.         <meta name="description" content="Ne aranjam..." />
  7.  
  8.         <link rel="icon" href="https://profs.info.uaic.ro/~vcosmin/img/favicon_cv.ico" type="image/x-icon">
  9.         <link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
  10.         <style>
  11.             body{
  12.                 font-family: 'Roboto', sans-serif;  
  13.             }
  14.             button{
  15.                 position: relative;
  16.                 background-color:#369;
  17.                 color:white;
  18.                 border:0;
  19.                 height:30px;
  20.                 width:80px;
  21.                 top:0;
  22.                 left:0;
  23.                 overflow:hidden;
  24.                 z-index:0;
  25.             }
  26.             button::before{
  27.                 position: absolute;
  28.                 content:' ';
  29.                 height:30px;
  30.                 width:80px;  
  31.                 background-color:darkred;
  32.                 top:30px;
  33.                 left:0px;
  34.                 z-index:-1;
  35.             }
  36.             button:hover::before{
  37.                 position: absolute;
  38.                 transition:all 0.2s;
  39.                 background-color:darkred;
  40.                 height:30px;
  41.                 width:80px;
  42.                 top:0;
  43.                 left:0;
  44.             }
  45.        
  46.         </style>
  47.     </head>
  48.     <body>
  49.    
  50.        <button>MyButton</button>
  51.        <button>MyButton</button>
  52.        <button>MyButton</button>
  53.  
  54.        
  55.  
  56.          
  57.     </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement