dollcrds

pro-plus cr dollcrds codes and music player

Nov 21st, 2024 (edited)
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.39 KB | None | 0 0
  1. ---CODES---
  2. <html>
  3. <body oncontextmenu="return false;">
  4. </html>
  5. <script>
  6. document.onkeydown = function(e) {
  7. if(event.keyCode == 123) {
  8. return false;
  9. }
  10. if(e.ctrlKey && e.shiftKey && e.keyCode == 'I'.charCodeAt(0)){
  11. return false;
  12. }
  13. if(e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)){
  14. return false;
  15. }
  16. if(e.ctrlKey && e.keyCode == 'U'.charCodeAt(0)){
  17. return false;
  18. }
  19. if(e.ctrlKey && e.shiftKey && e.keyCode == 'C'.charCodeAt(0)){
  20. return false;
  21. }
  22. }
  23. </script>
  24. <style>
  25. ::-webkit-scrollbar {
  26. width: 16px
  27. }
  28. ::-webkit-scrollbar-corner {
  29. background: #eee
  30. }
  31.  
  32. ::-webkit-scrollbar-track:vertical {
  33. background: linear-gradient(90deg, #e5e5e5, #f0f0f0 20%);
  34. }
  35.  
  36. ::-webkit-scrollbar-thumb {
  37. border: 1.5px solid #888;
  38. border-radius: 3px;
  39. box-shadow: inset 0 -1px 1px #fff, inset 0 1px 1px #fff;
  40. background-color: #eee;
  41. }
  42. ::-webkit-scrollbar-thumb:vertical {
  43. background: url("https://dl.dropbox.com/s/9a29qbkza3gmgl7/scroll1.png"), linear-gradient(90deg, #eee 45%, #ddd 0, #bbb);
  44. background-repeat: no-repeat;
  45. background-size: 65% auto, cover;
  46. background-position: center;
  47. }
  48.  
  49. ::-webkit-scrollbar-button:vertical:end:increment,
  50. ::-webkit-scrollbar-button:vertical:start:decrement {
  51. display: block
  52. }
  53.  
  54. ::-webkit-scrollbar-button:vertical {
  55. height: 15px
  56. }
  57. ::-webkit-scrollbar-button:vertical:start:decrement {
  58. background: white;
  59. background: url("https://dl.dropbox.com/s/n9ji42h9hdgdtpc/scroll3.png"), linear-gradient(90deg, #e5e5e5, #f0f0f0 20%);
  60. background-repeat: no-repeat;
  61. background-position: center;
  62. -moz-background-size: 100% auto, cover;
  63. -webkit-background-size: 100% auto, cover;
  64. -o-background-size: 100% auto, cover;
  65. background-size: 100% auto, cover;
  66. background-position: center;
  67. border-radius: 0 3px 0 0;
  68. }
  69.  
  70. ::-webkit-scrollbar-button:vertical:start:increment {
  71. display: none;
  72. }
  73. ::-webkit-scrollbar-button:vertical:end:decrement {
  74. display: none;
  75. }
  76.  
  77. ::-webkit-scrollbar-button:vertical:end:increment {
  78. background: white;
  79. background: url("https://dl.dropbox.com/s/cdcco6pih7n1lae/scroll4.png"), linear-gradient(90deg, #e5e5e5, #f0f0f0 20%);
  80. background-repeat: no-repeat;
  81. background-position: center;
  82. -moz-background-size: 100% auto, cover;
  83. -webkit-background-size: 100% auto, cover;
  84. -o-background-size: 100% auto, cover;
  85. background-size: 100% auto, cover;
  86. background-position: center;
  87. border-radius: 0 0 3px 0;
  88. }
  89. @font-face {
  90. font-family: windows;
  91. src: url(https://dl.dropbox.com/s/cn0l1yjacta4whv/W95FA.otf);
  92. }
  93. #text01{
  94. animation-name: hi;
  95. animation-duration: 2s;
  96. animation-iteration-count: infinite;
  97. }
  98.  
  99. @keyframes hi {
  100. 0% {
  101. transform: rotate(5deg);
  102. }
  103.  
  104. 50% {
  105. transform: rotate(-5deg);
  106. }
  107.  
  108. 100% {
  109. transform: rotate(5deg);
  110. }
  111. }
  112.  
  113. #text03 {
  114. animation: blinkingText 1.2s infinite;
  115. }
  116.  
  117. @keyframes blinkingText {
  118. 0% {
  119. color: #000000;
  120. }
  121.  
  122. 49% {
  123. color: #000000;
  124. }
  125.  
  126. 60% {
  127. color: white;
  128. }
  129.  
  130. 99% {
  131. color: white;
  132. }
  133.  
  134. 100% {
  135. color: #000000;
  136. }
  137. }
  138.  
  139. </style>
  140. <style type="text/css">* {cursor: url(https://cur.cursors-4u.net/others/oth-6/oth644.cur), auto !important;}</style>
  141.  
  142. ---MUSIC PLAYER---
  143. <script>
  144.  
  145. document.getElementById("image02").onclick = function() {
  146. var audio = document.getElementById("music");
  147. if (audio.paused) audio.play();
  148. else audio.pause();
  149. }
  150.  
  151. </script>
  152.  
  153. <audio id="music" src="https://dl.dropbox.com/scl/fi/wtb77l612o7hm6mi7a619/Yves-Viola-Audio.mp3?rlkey=2o6h2xw8tqhn4hb6j7yciq86a&st=v4ujzrt7&dl=0.mp3" preload="auto"></audio>
Advertisement
Add Comment
Please, Sign In to add comment