mixue

cr angeidiarys 2 (other codes)

Oct 30th, 2022 (edited)
1,156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. --- ALL FONTS ---
  2. <style>
  3. @font-face {
  4. font-family:planet;
  5. src:url(https://dl.dropbox.com/s/9ry0wrpduniwudy/PLANK___.TTF);
  6. }
  7.  
  8. @font-face {
  9. font-family: fenotype;
  10. src: url(https://dl.dropbox.com/s/klo6yfrf62916qp/02.10FEN.TTF);
  11. }
  12.  
  13. @font-face {
  14. font-family: lovely;
  15. src: url(https://dl.dropbox.com/s/xde2bkhiie1bm8r/LovelyRegular.ttf);
  16. }
  17. </style>
  18.  
  19. --- FLOATING IMAGE ---
  20.  
  21. <style>
  22. @keyframes floating {
  23. 0% { transform: translate(0, 0px); }
  24. 50% { transform: translate(0, 15px); }
  25. 100% { transform: translate(0, -0px); }
  26. }
  27. </style>
  28.  
  29. --- TEXT BLUR ON HOVER ---
  30.  
  31. <style>
  32. a:hover {
  33. webkit-filter: blur(0.5px);
  34. filter: blur(2px);
  35. }
  36. </style>
  37.  
  38. --- WOBBLY TEXT ---
  39.  
  40. <style>
  41. @font-face {
  42. font-family:'PORKYS';
  43. src: url(https://dl.dropbox.com/s/p47jjxbd1dg8st2/PORKYS_.TTF?);
  44. }
  45. #wobble {
  46. font-size:210%;
  47. font-family:'PORKYS';
  48. color:#000;
  49. font-weight:bold;
  50. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  51. }
  52. </style>
  53. <div id="wobble">Welcome ~</div><script type="text/javascript">
  54. // <![CDATA[
  55. var speed=100; // speed of wobbling, lower is faster
  56. var height=2; // height of wobbling in pixels
  57. var alink=""; // page to link text to (set to ="" for no link)
  58.  
  59. /****************************
  60. * Wobbly Text Effect *
  61. *(c) 2003-6 mf2fm web-design*
  62. * http://www.mf2fm.com/rv *
  63. * DON'T EDIT BELOW THIS BOX *
  64. ****************************/
  65. var wobtxt, wobble, wobcnt=0;
  66. window.onload=function() { if (document.getElementById) {
  67. var i, wobli;
  68. wobble=document.getElementById("wobble");
  69. wobtxt=wobble.firstChild.nodeValue;
  70. while (wobble.childNodes.length) wobble.removeChild(wobble.childNodes[0]);
  71. for (i=0; i<wobtxt.length; i++) {
  72. wobli=document.createElement("span");
  73. wobli.setAttribute("id", "wobb"+i);
  74. wobli.style.position="relative";
  75. wobli.appendChild(document.createTextNode(wobtxt.charAt(i)));
  76. if (alink) {
  77. wobli.style.cursor="pointer";
  78. wobli.onclick=function() { top.location.href=alink; }
  79. }
  80. wobble.appendChild(wobli);
  81. }
  82. setInterval("wobbler()", speed);
  83. }}
  84.  
  85. function wobbler() {
  86. for (var i=0; i<wobtxt.length; i++) document.getElementById("wobb"+i).style.top=Math.round(height*Math.sin(i+wobcnt))+"px"
  87. wobcnt++;
  88. }
  89. // ]]>
  90. </script>
Advertisement
Add Comment
Please, Sign In to add comment