monoteen

transform

Oct 5th, 2014
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.86 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.             p {
  9.                 width: 100px;
  10.                 height: 50px;
  11.                 border: 1px solid black;
  12.                 background: yellow;
  13.                 transition: width 5s, height 5s, border 5s, transform 5s;
  14.                 -webkit-transition: width 5s, height 5s, border 5s, transform 5s;
  15.             }
  16.             p:hover {
  17.                 width: 200px;
  18.                 height: 100px;
  19.                 border: 10px solid red;
  20.                 transform: rotate(180deg);
  21.                 -webkit-transform: rotate(180deg);
  22.             }
  23.         </style>
  24.     </head>
  25.     <body>
  26.         <p>TODO write content</p>
  27.     </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment