danysaurus's profile picture

Published by

published
updated

Category: SpaceHey

need help with alot of coding

There's lots of stuff I want to add to my page but have no idea how. Here's a list.

Semi-transparent main background (the one infront of the left-right background)
Custom cursor (fiddled with it. did not work.)
Autoplaying, looping background music (fiddled with this too. did not work.)
"Interest" tab borders

edit: Forgot to add that I'd like to make the contact/links tab disappear aswell
edit 2: I've managed all of this except the cursor (which I didn't really care for anyways lol)! thanks to everyone who helped me :)


0 Kudos

Comments

Displaying 3 of 3 comments ( View all | Add Comment )

notahollabackgurl

notahollabackgurl's profile picture

loop music
|
v



it seems easy 2 loop music right? no.. cuz u cant use the embed link youtube gives u! u have to copy the last few letters and numbers on the link of the video NOT THE EMBED LINK!! click on the search bar and you will see the youtube code u need 2 copy (if u dont know where it is it comes after "/watch?v=" remember do not use the embed link!! use the link on ur search bar!! if u use the embed link it will not loop at all!
idk if the code I put disappeared but if it did this blog will help u to loop music :https://blog.spacehey.com/entry?id=727182


Report Comment

#1 BOYFAILURE

#1 BOYFAILURE's profile picture

i can help with the semi-transparent background!


to make background colors semi transparent, you have to use rgba values.


here is an example using blue as the background color:


background: rgba(0, 0, 255, 0.8);


the "0.8" is the percentage of the opacity. the higher it is, the more opaque it becomes. so 0 is transparent and 1 is fully opaque.


you can apply this property to anything and it'll work, i think.


to find the rgba values of colors, you can use this website


sorry if this isn't what you're looking for!


Report Comment



oh and here's the code for the main background



main {
background: rgba(0, 0, 255, 0.8);
}

by #1 BOYFAILURE; ; Report

thank you, I managed to make all the content transparent but I'd prefer it just be the main bg

by danysaurus; ; Report

roxy

roxy's profile picture

<iframe width="0" height="0" src="https://www.youtube.com/embed/[youtube id here]?loop=1&autoplay=1&controls=0&start=0&playlist=[youtube id here]&" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen=""></iframe>






^autoplay loop music thingy




n hiding the contact links is against da rulez ("Don't hide the "Contact" Box or its content which allows users to add/remove you as a Friend and block/report you")




sall i can rly say? im liek half awake rn i cant understand shit pologies


Report Comment



I'll try out the autoplayer you gave

I don't mean the content tab, I mean the links tab, with youtube and such, not sure what's allowed

by danysaurus; ; Report

OOOH ok wait




.table-section:last-of-type {
display: none;
}

by roxy; ; Report

thank you!!

by danysaurus; ; Report