dollcrds

CR CRDITEM (pro-standard code)

Aug 7th, 2024 (edited)
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.46 KB | None | 0 0
  1. <div id="cont">
  2. <img class=phone src="https://dl.dropbox.com/scl/fi/l01il5tyz7gxjw4ssxq6x/download-9.png?rlkey=z817tkdqn8md33o53szvc8ksi&st=u72e5i0k&dl=0.png">
  3. <div id="phonein">dialing...</div>
  4. <div id="scroll">
  5.  
  6. <strong>scroll! & credit crditem</strong> hai im <strong>name</strong> or <strong>name!</strong> text goes here info info info info info
  7. <br></br>
  8. <u>underlined text</u> text goes here info info info info info
  9. <br></br>
  10. text goes here info info info info info text goes here info info info info info text goes here info info info info info
  11. <br></br>
  12. <em>italicized text</em> <strong>bold text</strong> <u>more underlined text</u> text goes here info info info info info text goes here info info info info info
  13. <br></br>
  14. <a href="link goes here">name of link goes here (link title)</a>
  15. </div>
  16.  
  17. <style>
  18.  
  19. @font-face {
  20. font-family: 'Magica';
  21. src: url(https://static.tumblr.com/p6yopnt/Qkiqnu0r5/theheart.ttf);
  22. }
  23.  
  24. @font-face {
  25. font-family: jandas;
  26. src: url(https://dl.dropbox.com/s/5s7za29vw66rgkk/11.20___.TTF);
  27. }
  28.  
  29. #phonein {
  30. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  31. font-family: jandas;
  32. position: absolute;
  33. opacity: 0.8;
  34. top: 15%;
  35. z-index: 3;
  36. font-size: 2em;
  37. color: white;
  38. transform: rotate(-10deg);
  39. left: 10%;
  40. opacity: 0;
  41. transition: 1s ease;
  42. }
  43.  
  44. #cont:hover #scroll {
  45. width: 180px;
  46. left: 55%;
  47. opacity: 1;
  48. }
  49.  
  50. #cont:hover #phonein {
  51. left: 63%;
  52. opacity: 1;
  53. }
  54.  
  55. #cont:hover .phone { animation-play-state: paused; }
  56.  
  57. #scroll {
  58. font-family: 'Magica';
  59. transform: rotate(-10deg);
  60. transition: 1s ease;
  61. position: absolute;
  62. top: 30%;
  63. left: 35%;
  64. height: 80px;
  65. border-radius: 0 12px 12px 0;
  66. width: 1px;
  67. overflow: scroll;
  68. border: 1px solid black;
  69. padding: 5px;
  70. padding-left: 19px;
  71. background: rgb(255,255,255);
  72. background: radial-gradient(circle, rgba(255,255,255,1) 49%, #eecee6 100%);
  73. text-align: right;
  74. }
  75.  
  76. #cont {
  77. left: -20px;
  78. margin-left: auto;
  79. margin-right: auto;
  80. position: relative;
  81. width: 240px;
  82. height: 260px;
  83.  
  84. }
  85.  
  86. .phone {
  87. left: -35px;
  88. z-index: 99;
  89. position: relative;
  90. width: auto;
  91. object-fit: cover;
  92. height: 250px;
  93. -webkit-filter: drop-shadow(0px 0px 4px #000000);
  94. -webkit-animation: vibrate 2s cubic-bezier(.36, .07, .19, .97) infinite;
  95. animation: vibrate 2s cubic-bezier(.36, .07, .19, .97) infinite;
  96. -webkit-transform: translate3d(0, 0, 0);
  97. transform: translate3d(0, 0, 0);
  98. -webkit-backface-visibility: hidden;
  99. backface-visibility: hidden;
  100.  
  101. }
  102.  
  103. @keyframes vibrate {
  104. 0.50%, 10%, 20%, 30%, 40%, 50%
  105. {
  106. -webkit-transform: translate3d(0.5px, 0, 0);
  107. transform: translate3d(0.5px, 0, 0);
  108. }
  109. 5%, 15%, 25%, 35%, 45%
  110. {
  111. -webkit-transform: translate3d(-0.5px, 0, 0);
  112. transform: translate3d(-0.5px, 0, 0);
  113. }
  114. 100% {
  115. -webkit-transform: translate3d(0.5px, 0, 0);
  116. transform: translate3d(0.5px, 0, 0);
  117. }
  118.  
  119. }
  120. html {
  121. overflow: scroll;
  122. overflow-x: hidden;
  123. }
  124. ::-webkit-scrollbar {
  125. width: 0; /* remove scrollbar space */
  126. background: transparent; /* to make scrollbar invisible */
  127. }
  128. ::-webkit-scrollbar-thumb {
  129. background: transparent;
  130. }
  131.  
  132. </style>
  133. <script type="text/javascript">
  134. // <![CDATA[
  135. var bgcolour="#ffffff"; // background colour
  136. var hlcolour="#a42c65"; // highlight colour
  137. var speed=250; // speed colours change, 1 second = 1000
  138.  
  139. /****************************
  140. * Phone-In Text Effect *
  141. *(c) 2003-6 mf2fm web-design*
  142. * http://www.mf2fm.com/rv *
  143. * DON'T EDIT BELOW THIS BOX *
  144. ****************************/
  145. var p_txt;
  146. window.onload=function() { if (document.getElementById) {
  147. var phoni;
  148. var phone=document.getElementById("phonein");
  149. p_txt=phone.firstChild.nodeValue;
  150. while (phone.childNodes.length) phone.removeChild(phone.childNodes[0]);
  151. for (var i=0; i<p_txt.length; i++) {
  152. phoni=document.createElement("div");
  153. phoni.style.display="inline";
  154. phoni.setAttribute("id", "phon"+i);
  155. phoni.appendChild(document.createTextNode(p_txt.charAt(i)));
  156. phone.appendChild(phoni);
  157. }
  158. phone_me((p_txt=p_txt.length)-1);
  159. }}
  160.  
  161. function phone_me(p_cnt) {
  162. var p_tmp=document.getElementById("phon"+p_cnt);
  163. p_tmp.style.fontWeight="normal";
  164. if (document.all) p_tmp.style.filter='';
  165. p_tmp.style.backgroundColor=bgcolour;
  166. p_cnt=++p_cnt%p_txt;
  167. p_tmp=document.getElementById("phon"+p_cnt);
  168. if (p_tmp.firstChild.nodeValue!=" ") {
  169. p_tmp.style.fontWeight="bold";
  170. if (document.all) p_tmp.style.filter="GLOW(strength=3, color=#"+bgcolour+")";
  171. p_tmp.style.backgroundColor=hlcolour;
  172. }
  173. setTimeout("phone_me("+p_cnt+")", speed);
  174. }
  175. // ]]>
  176. </script>
  177.  
  178. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  179. <script src="//static.tumblr.com/gtjt4bo/QRmphdsdv/glenplayer02.js"></script>
  180.  
  181. <script type="text/javascript">
  182.  
  183. /*
  184. Simple Image Trail script- By JavaScriptKit.com
  185. Visit http://www.javascriptkit.com for this script and more
  186. This notice must stay intact
  187. */
  188.  
  189. if (document.getElementById || document.all)
  190. document.write('<div id="trailimageid" style="position:fixed;visibility:visible;left:0px;top:0px;width:1px;height:1px;pointer-events:none;z-index:1000"><img src="'+trailimage[0]+'" border="0" width="'+trailimage[1]+'px" height="'+trailimage[2]+'px"></div>')
  191.  
  192. function gettrailobj(){
  193. if (document.getElementById)
  194. return document.getElementById("trailimageid").style
  195. else if (document.all)
  196. return document.all.trailimagid.style
  197. }
  198.  
  199. function truebody(){
  200. return (!window.opera && document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
  201. }
  202.  
  203. function hidetrail(){
  204. gettrailobj().visibility="hidden"
  205. document.onmousemove=""
  206.  
  207. }
  208.  
  209. function followmouse(e){
  210. var xcoord=offsetfrommouse[0]
  211. var ycoord=offsetfrommouse[0]
  212. if (typeof e != "undefined"){
  213. xcoord+=e.pageX
  214. ycoord+=e.pageY
  215. }
  216. else if (typeof window.event !="undefined"){
  217. xcoord+=truebody().scrollLeft+event.clientX
  218. ycoord+=truebody().scrollTop+event.clientY
  219. }
  220. var docwidth=document.all? truebody().scrollLeft+truebody().clientWidth : pageXOffset+window.innerWidth-15
  221. var docheight=document.all? Math.max(truebody().scrollHeight, truebody().clientHeight) : Math.max(document.body.offsetHeight, window.innerHeight)
  222. if (xcoord+trailimage[1]+3>docwidth || ycoord+trailimage[2]> docheight)
  223. gettrailobj().display="none"
  224. else
  225. gettrailobj().display=""
  226. gettrailobj().left=xcoord+"px"
  227. gettrailobj().top=ycoord+"px"
  228. }
  229.  
  230. document.onmousemove=followmouse
  231.  
  232. if (displayduration>0)
  233. setTimeout("hidetrail()", displayduration*1000)
  234.  
  235. </script><div id="trailimageid" style="position: fixed; visibility: visible; left: 476px; top: 780px; width: 1px; height: 1px; pointer-events: none; z-index: 1000;"> </div>
Advertisement
Add Comment
Please, Sign In to add comment