« Web, HTML, Tech Forum

Pimp my profile

How do I add falling glittery red skulls to my profile? And music that cant be paused that automatically plays while my page is open?


Report Topic

10 Replies

Sort Replies:

Reply by Kimberly Anna

posted

Also would like to know. Please message me when someone answers.


Report Reply

Reply by Stevie Bernardoni

posted

I've been told that pimp my profile is normally not compatible with spacehey. At least as of right now.


Report Reply

Reply by Raga Tanha

posted

Pimp my profile works but u gotta use the codes for MySpace 2.0 cuz the coding is the same the only thing that won't register is the boxes or modules but u can write a stronger command for those 


Report Reply

Reply by HoshiScene

posted
updated

i think pimpmyprofile only uses HTML , not CSS it was for the old myspace , plus the sizes would be wrong, boxes, text 


Report Reply

Reply by LeBir

posted

you can add falling images effect by using a generator you can use this one or this one there are many html falling objects generators


Report Reply

Reply by Marc aka Trogy

posted

For the music it wont work for everyone as there's autoplay restrictions in any modern browser but heres some code that works if autoplay is enabled.


<iframe width="0" height="0" src="https://www.youtube.com/embed/[REPLACE WITH VIDEO ID]?autoplay=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen=""></iframe>


Report Reply

Reply by (っ◔◡◔)っ ♥ Mary ♥

posted

Pimp my profile actually works on spacehey


Report Reply

Reply by Slummy

posted

I can send you a code that might help :) i added you


Report Reply

Reply by polinkuer12

posted
updated

Garlic hopes to receive that code with Quick Draw . I will be very grateful to you for this 


Report Reply

Reply by ChronicEmo420

posted

Autoplay song code. add media url inside "src"


<iframe width="0" height="0" src="             &;amp;;autoplay=1&;loop=1&;controls=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" loading="lazy">

</iframe>


code for falling glitter skulls. add media url by "url(                  );"


<style>

html:before {

  animation: grain 8s steps(10) infinite;

  background-image: url(                                  );

  content: "";

  height: 300%;

  left: -50%;

  opacity:.2;

  position: fixed;

  top: -110%;

  width: 300%;

  pointer-events:none;

}

@keyframes grain {

  0%, 100% { transform:translate(0, 0) }

  10% { transform:translate(-5%, -10%) }

  20% { transform:translate(-15%, 5%) }

  30% { transform:translate(7%, -25%) }

  40% { transform:translate(-5%, 25%) }

  50% { transform:translate(-15%, 10%) }

  60% { transform:translate(15%, 0%) }

  70% { transform:translate(0%, 15%) }

  80% { transform:translate(3%, 35%) }

  90% { transform:translate(-10%, 10%) }

} </style>




Report Reply