Advertisement
clarisue

maruyama ju mp menu

Nov 19th, 2021 (edited)
470
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.85 KB | None | 0 0
  1. <!-- please credit me if you somehow find & use this @catkanade on ig :3 cr nene for the border -->
  2.  
  3. <style>
  4. #contain {
  5. display: block;
  6. position: relative;
  7. z-index: 99;
  8. border-width:10px;
  9. border-style:solid;
  10. border-image: url("https://i.imgur.com/gTFIwdW.png") 11 fill round;
  11. height: 75%;
  12. width: auto;
  13. }
  14. .mahhh {
  15. overflow: hidden;
  16. }
  17. .meow {
  18. object-fit: fill;
  19. position: relative;
  20. display: block;
  21. overflow: hidden;
  22. z-index: 99;
  23. height: 100%;
  24. transition: .8s ease;
  25. filter: saturate(115%);
  26. width: 100%;
  27. }
  28. .meow:hover {
  29. transition: .8s ease;
  30. transform: scale(1.8) translate(60px, 35px); /* remove the translate if you just want it to zoom inwards, if u need help dm me */
  31. filter: saturate(145%);
  32. }
  33. .popup {
  34. position: absolute;
  35. left: 0;
  36. overflow: hidden;
  37. right: 0;
  38. bottom: 7%;
  39. height: 0;
  40. border: 1px solid #fea0a0;
  41. z-index: 98;
  42. margin: auto;
  43. text-align: center;
  44. width: 40%;
  45. border-radius: 7px;
  46. background: white;
  47. transition: .7s ease;
  48. }
  49. #contain:hover .popup {
  50. position: absolute;
  51. bottom: -17%;
  52. transition: .7s ease;
  53. height: 4em;
  54. }
  55. .write {
  56. color: #fecdcc;
  57. text-shadow: -1px 0 #fea0a0, 0 1px #fea0a0, 1px 0 #fea0a0, 0 -1px #fea0a0, 0 0;
  58. display: inline-block;
  59. margin-bottom: 3px;
  60. text-align: center;
  61. font-family: mali;
  62. position: relative;
  63. top: 50%;
  64. font-size: 1.75em;
  65. }
  66. .write a {
  67. color: white;
  68. display: inline-block;
  69. transition: .4s ease;
  70. text-decoration: none;
  71. letter-spacing: normal;
  72. }
  73. .write a:hover {
  74. color: #fecdcc;
  75. transform: translate(0px, -6px);
  76. transition: .3s ease;
  77. }
  78. </style>
  79. <div id="contain"><div class="popup"><div class="write"><a href="#one">01</a> <a href="#two">02</a> <a href="#three">03</a></div></div><div class="mahhh"><img src="https://dl.dropbox.com/s/3cxmboj6yfat0va/Photo%20Nov%2017%2C%2010%2006%2058%20PM.jpg" class="meow"></div></div> /* please make sure to put your own images and such here :3 */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement