Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <style type="text/css">
  7. .container{
  8. width: 200px;
  9. height: 200px;
  10. margin:50px auto 0px;
  11. border:1px solid #ccc;
  12. box-shadow: 2px 2px 1px #ccc;
  13. border-radius: 4px;
  14. position: relative;
  15. }
  16.  
  17. .animated {
  18. background-color: lightblue;
  19. position: absolute;
  20. width: inherit;
  21. height: inherit;
  22. text-align: center;
  23. animation:open-down-right-out 1s 3;
  24. }
  25.  
  26. @keyframes open-down-right-out{
  27. 0%{
  28. -webkit-transform-origin:bottom right;
  29. -moz-transform-origin:bottom right;
  30. -ms-transform-origin:bottom right;
  31. -o-transform-origin:bottom right;
  32. transform-origin:bottom right;
  33.  
  34. -webkit-transform: rotate(0deg);
  35. -moz-transform: rotate(0deg);
  36. -ms-transform: rotate(0deg);
  37. -o-transform: rotate(0deg);
  38. transform: rotate(0deg);
  39.  
  40. opacity: 1;
  41. }
  42.  
  43. 100%{
  44. -webkit-transform: rotate(110deg);
  45. -moz-transform: rotate(110deg);
  46. -ms-transform: rotate(110deg);
  47. -o-transform: rotate(110deg);
  48. transform: rotate(110deg);
  49.  
  50. opacity: 0;
  51.  
  52. -webkit-transform-origin:bottom right;
  53. -moz-transform-origin:bottom right;
  54. -ms-transform-origin:bottom right;
  55. -o-transform-origin:bottom right;
  56. transform-origin:bottom right;
  57. }
  58. }
  59. </style>
  60. </head>
  61. <body>
  62. <div class="container">
  63. <div class="animated">
  64. This is Text!
  65. </div>
  66. </div>
  67. </body>
  68. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement