dollcrds

maniac crd co codes

Jun 4th, 2022 (edited)
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. <style>
  2. @font-face {
  3. font-family:'heart';
  4. src: url(https://dl.dropbox.com/s/3obmncth4fhmduq/HEARRG__.TTF);
  5. }
  6. @font-face {
  7. src: url(https://dl.dropbox.com/s/1479f8x52y3z5u4/rainyhearts.ttf);
  8. font-family: hearts;
  9. }
  10. @font-face {
  11. font-family: emoji;
  12. src: url(https://dl.dropbox.com/s/cvba4kh6qm23mru/EmojiFont.ttf);
  13. }
  14. </style>
  15.  
  16. <style>
  17. .ani {
  18. -webkit-animation: scale-up-ver-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  19. animation: scale-up-ver-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  20. }
  21. /* ----------------------------------------------
  22. * Generated by Animista on 2022-5-24 22:0:0
  23. * Licensed under FreeBSD License.
  24. * See http://animista.net/license for more info.
  25. * w: http://animista.net, t: @cssanimista
  26. * ---------------------------------------------- */
  27.  
  28. /**
  29. * ----------------------------------------
  30. * animation scale-up-ver-center
  31. * ----------------------------------------
  32. */
  33. @-webkit-keyframes scale-up-ver-center {
  34. 0% {
  35. -webkit-transform: scaleY(0.4);
  36. transform: scaleY(0.4);
  37. }
  38. 100% {
  39. -webkit-transform: scaleY(1);
  40. transform: scaleY(1);
  41. }
  42. }
  43. @keyframes scale-up-ver-center {
  44. 0% {
  45. -webkit-transform: scaleY(0.4);
  46. transform: scaleY(0.4);
  47. }
  48. 100% {
  49. -webkit-transform: scaleY(1);
  50. transform: scaleY(1);
  51. }
  52. }
  53. </style>
  54.  
  55. <script>
  56.  
  57. // Mouseover/ Click sound effect- by JavaScript Kit (www.javascriptkit.com)
  58. // Visit JavaScript Kit at http://www.javascriptkit.com/ for full source code
  59.  
  60. //** Usage: Instantiate script by calling: var uniquevar=createsoundbite("soundfile1", "fallbackfile2", "fallebacksound3", etc)
  61. //** Call: uniquevar.playclip() to play sound
  62.  
  63. var html5_audiotypes={ //define list of audio file extensions and their associated audio types. Add to it if your specified audio file isn't on this list:
  64. "mp3": "audio/mpeg",
  65. "mp4": "audio/mp4",
  66. "ogg": "audio/ogg",
  67. "wav": "audio/wav"
  68. }
  69.  
  70. function createsoundbite(sound){
  71. var html5audio=document.createElement('audio')
  72. if (html5audio.canPlayType){ //check support for HTML5 audio
  73. for (var i=0; i<arguments.length; i++){
  74. var sourceel=document.createElement('source')
  75. sourceel.setAttribute('src', arguments[i])
  76. if (arguments[i].match(/\.(\w+)$/i))
  77. sourceel.setAttribute('type', html5_audiotypes[RegExp.$1])
  78. html5audio.appendChild(sourceel)
  79. }
  80. html5audio.load()
  81. html5audio.playclip=function(){
  82. html5audio.pause()
  83. html5audio.currentTime=0
  84. html5audio.play()
  85. }
  86. return html5audio
  87. }
  88. else{
  89. return {playclip:function(){throw new Error("Your browser doesn't support HTML5 audio unfortunately")}}
  90. }
  91. }
  92.  
  93. //Initialize two sound clips with 1 fallback file each:
  94.  
  95. var mouseoversound=createsoundbite("https://drive.google.com/uc?export=download&id=1IHVDIesQOo7PKfxN_EsLnAaoNiNRlo7N")
  96. var clicksound=createsoundbite("https://drive.google.com/uc?export=download&id=1IHVDIesQOo7PKfxN_EsLnAaoNiNRlo7N")
  97.  
  98. </script>
Add Comment
Please, Sign In to add comment