Advertisement
Guest User

Untitled

a guest
Sep 24th, 2013
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Target/Transition</title>
  6. <style type="text/css">
  7. body{
  8. background-color:rgb(0,0,0)
  9. }
  10. .menu{
  11. display:inline-block;
  12. position:relative;
  13. text-align:center;
  14. width:180px;
  15. height:40px;
  16. border:4px solid;
  17. font-size:120%;
  18. margin:10px;
  19. }
  20. #yellowCircleEnable{
  21. border-color:rgb(230,230,0);
  22. background-color:rgb(255,255,0);
  23.  
  24. }
  25. #blueSquareEnable{
  26. border-color:rgb(0,0,210);
  27. background-color: rgb(0,0,255);
  28. }
  29. #defaultEnable{
  30. border-color:rgb(210,0,0);
  31. background-color:rgb(255,0,0);
  32. }
  33. a:hover{
  34. border-color:rgb(100,100,100) !important;
  35. background-color: rgb(100,100,100) !important;
  36. }
  37. a:link{
  38. color:rgb(0,0,0);
  39. text-decoration: none;
  40. }
  41.  
  42. #animWrap{
  43. position:relative;
  44. height:800px;
  45. width:800px;
  46. margin:auto;
  47. background-color:green;
  48. }
  49. #object{
  50. position:relative;
  51. top:400px;
  52. left:400px;
  53. width:5px;
  54. height:5px;
  55. background-color:rgb(255,0,0);
  56. transition: all 3s linear 0s;
  57. }
  58.  
  59. </style>
  60.  
  61. </head>
  62. <body>
  63. <a href="#dunno" id="yellowCircleEnable" class="menu">Gul Sirkel</a>
  64. <a href="#dunno" id="blueSquareEnable" class="menu">Blå firkant</a>
  65. <a href="#" id="defaultEnable" class="menu">Default</a>
  66. <div id="animWrap">
  67. <div id="object"> </div>
  68. </div>
  69. </body>
  70.  
  71. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement