monoteen

transition

Oct 5th, 2014
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.67 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>TODO supply a title</title>
  5.         <meta charset="UTF-8">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.         <style>
  8.             div {
  9.                 width: 100px;
  10.                 height: 50px;
  11.                 border: 1px solid black;
  12.                 background: yellow;
  13.                 transition: width 5s;
  14.                 -webkit-transition: width 5s;
  15.                 -moz-transition: width 5s;
  16.             }
  17.             div:hover {
  18.                 width: 200px;
  19.             }
  20.         </style>
  21.     </head>
  22.     <body>
  23.         <div>TODO write content</div>
  24.     </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment