Advertisement
minimu

updates tab / 2

Jun 30th, 2015
620
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. PASTE THIS AT THE TOP AFTER <head> AND BEFORE THE COLOR META NAMES COME UP.
  2. ----------
  3.  
  4. <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" type="text/javascript"></script>
  5. <script type="text/javascript">
  6.  
  7. $(document).ready(function(){
  8.  
  9. $(".slidingDiv").hide();
  10. $(".show_hide").show();
  11.  
  12. $('.show_hide').click(function(){
  13. $(".slidingDiv").slideToggle();
  14. });
  15.  
  16. });</script>
  17.  
  18. ----------
  19.  
  20. PASTE THIS BETWEEN <style type="text/css"> AND </style>
  21.  
  22. ----------
  23. /*JCGGED*/
  24. #updatetab{background-color:black;
  25. position:fixed;
  26. margin-left:10px;
  27. margin-top:40px;
  28. text-align:center;
  29. color:white;
  30. width:100px;
  31. height:100px;
  32. -moz-transition-duration:0.3s;
  33. -webkit-transition-duration:0.3s;
  34. -o-transition-duration:0.3s;
  35. overflow:auto;
  36. padding:10px;
  37. }
  38.  
  39. .click{font-weight:bold;
  40. background-color:#eee;
  41. padding:10px;
  42. margin-left:10px;
  43. position:fixed;
  44. margin-top:10px;
  45. display:inline-block;
  46. }
  47.  
  48. #updatetab blockquote{border:solid 1px white; width:70px;padding:10px;text-decoration:italics;letter-spacing:1px;font-size:7px;}
  49. ----------
  50.  
  51. PASTE THIS BETWEEN <body> and </body>
  52. ---------
  53.  
  54. <a href="#" class="show_hide"><div class="click">&. CLICK <i>!</i></div></a>
  55. <div class="slidingDiv">
  56. <div id="updatetab"><b>shay.</b> sixteen. (she/her)
  57. <blockquote>this is the new america
  58. we are the new america</blockquote>
  59. drafts: 0
  60. memes: 0
  61. messages: 0
  62. </div></div>
  63.  
  64. -------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement