Advertisement
googin

Drop Down Thing

Mar 20th, 2022
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
  4. <script>
  5. $(document).ready(function(){
  6. $("#flip").click(function(){
  7. $("#panel").slideDown("slow");
  8. });
  9. });
  10. </script>
  11. <html>
  12. <head>
  13. <link href='https://fonts.googleapis.com/css?family=Quicksand' rel='stylesheet'>
  14. <style>
  15. body {
  16. font-family: 'Quicksand';
  17. }
  18. </style>
  19. </head>
  20. <style>
  21. #panel, #flip {
  22. padding: 5px;
  23. text-align: center;
  24. background: -webkit-linear-gradient(-90deg, #F0CEFF 0%, #F4E6FB 100%);
  25. border: solid 1px #BE93D4;
  26. width: 8em;
  27. font-size: 20px;
  28. border-radius: 5px;
  29. position: absolute;
  30. left: -0.95em;
  31. top: 6.5em;
  32. }
  33.  
  34. #panel {
  35. padding: 10px;
  36. display: none;
  37. }
  38. mark {
  39. background: linear-gradient(315deg, rgba(255,255,255,1) 0%, rgba(154,255,151,1) 99%);
  40. padding-left:10px;
  41. padding-right:10px;
  42. border-radius:10px;
  43. padding-top:2.5px;
  44. padding-bottom:2.5px;
  45. border:1px solid black;
  46. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0px 0px 6px #fff;
  47. color:white;
  48. font-size:20px;
  49. letter-spacing: 3px;
  50. font-style: italic;
  51. </body>
  52. </style>
  53. <body>
  54. <div id="flip"> Click for Info </div>
  55. <div id="panel">text here</div>
  56.  
  57. </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement