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?
« Web, HTML, Tech Forum
Pimp my profile
10 Replies
Reply by Kimberly Anna
posted
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.
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
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
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.
Reply by (っ◔◡◔)っ ♥ Mary ♥
posted
Reply by Slummy
posted
Reply by polinkuer12
posted
updated
Garlic hopes to receive that code with Quick Draw . I will be very grateful to you for this
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>