This is just a collection of a buncha shit I think is useful or cool.
I tried my best to sort everything in a way that made sense and is easy to navigate, so have fun sorting through all that lol.
Bullets marked with a pink heart -> are favorites, and will be in a seperate collumn.
Various HTML goodies.
Things that you can use to help you create a site, or helpful stuff for html in general.
What it says. I didn't really learn how to properly code since I just mess around with this for fun, but now I've got the itch to actually like, get better at it lol. Usually, I just grab codes that other people make, mess with them until I figure out what does what and maybe I figure out why, and then I somehow try to replicate it myself.
This is also going to have notes (mainly for myself) aside some codes, or otherwise stupidly simple stuff that I want to remember.
the codes I just snag wholesale I'll also link back to where I found them if i can find them again (since usually I just grab em from stackoverflow), but when in doubt, comb stackoverflow after a highly specific google search and it should turn up lol.
Da hoarddd
Monsieurdoll psp -> 3ds Shell
I took monsieurdoll's PSP code and modified it to fit a 3DS shell image I found. I also fit my Cbox chatbox on the bottom half.
This is the code I used on my homepage, if you want a live example. Im linking an img for this one.
Theme Swapper Buttons
I took this theme switcher code and simplified it to look a little different, but functionally, its the same.
It doesn't work right on this example cause I copied the empty code
I did this one myself, its pathetically simple and took me way too long to figure out, but all you need to do is change all the values for the script and stuff so its not calling on the same thing if theres more than one on there. infinte tabs goooo
Tooltip
I THINK, empahsis on THINK, this was from scripted...? I grabbed this code foreeever ago on the old version of the site im pretty sure, but then they updated it and I havent been able to find it since. This is why I save the codes themselves and not links lol.
hover meeeeeee
Auto click something on load
Im gonna be real I lost the source. But I know its somehwere on stackoverflow, I dont have the direct link since i just searched, grabbed it and then continued coding behjshfjd.
Stupied Gallery Code
another goated code, I use this thing everywhere. made by stupied Here is the jslightbox they linked I only grabbed this one but they got more! go look at their big brain stuff!
Sadgrl.online random thing displayed from list on click
ill be here all day pasting the codes for them all, heres to hoping the code hosting thing doesnt evaporate one day lol (which is why i grab the codes themselves as text for myself, look what happened with the tooltip LOL)
A chatbox cellphone code that is fixed to the corner of the screen and floats up when you hover on it. I nabbed this from scripted. I dont wanna lose the code if the jsfiddle goes away.
My dumb ass finally figured out the pathetically simple solution to wanting the tabs to scroll... its just.. this. This is mainly for myself BEJDHFSJHV
Infinite Marquee
Another thing I yoinked from stupied, though they also wrote that they grabbed it from somewhere they cant remember, so who knows lol. My guess is maybe sadgrl.online?
How did we end up here? You said happenstance. The cruelest lies are often told without a word. The kindest truths are often spoke but never heard. The creatures outside looked from pig to man, and from man to pig, and from pig to man again; but already it was impossible to say which was which. A poem is a song that no one cares about. I'm not the boogeyman but I am the boogey man. Fight for the fact that you're worth more than a decimal. WOAH! THAT SNAIL IS FAST!! Well here we are again. It's always such a pleasure :). Oooh you've come so far! The dynamic pose with the vibrant colours and lineless touches is much prettier, the clothes flow nicely (that bow detail is lovely) and more carefully constructed hands are very noticeable, a definite improvement from the squiggly on on the right
How did we end up here? You said happenstance. The cruelest lies are often told without a word. The kindest truths are often spoke but never heard. The creatures outside looked from pig to man, and from man to pig, and from pig to man again; but already it was impossible to say which was which. A poem is a song that no one cares about. I'm not the boogeyman but I am the boogey man. Fight for the fact that you're worth more than a decimal. WOAH! THAT SNAIL IS FAST!! Well here we are again. It's always such a pleasure :). Oooh you've come so far! The dynamic pose with the vibrant colours and lineless touches is much prettier, the clothes flow nicely (that bow detail is lovely) and more carefully constructed hands are very noticeable, a definite improvement from the squiggly on on the right
This thing is fucking goated dude. Grabbed it from Adeline.net (VirtualDiva), but they took their site down, so im linking the webarchive version on the page where the music player is. It's a shame. that site was super cool.
im just gonna dump everything in one giant html file below in the code box, but i suggest downloading the file they gave out since its all clean and working as intended.
This live example is from my homepage!
00:00
0:00
skip_previous
play_arrow
skip_next
volume_up
Glenthemes Music Player
found this off scripted, plugged the song from my journal on it just so it plays and i can see it works. I also swapped the mute and volume icon since it doesnt make sense to show its muted when its playing.
titleeee
desc
titleeee
desc
titleeee
desc
titleeee
desc
NOTES 4 me cause I got nowhere else to put em
Im horrifically stupid and forget everything, even the basics. So Im keeping all this here for me. But it might be useful to someone else, so i thought id share whatever little notes i have.
Now make your choice....
Changing Cursors
You can change the cursor for certain classes / ID's, from cursors 4 u.
CLASS OR ID {
cursor: url("https://cur.cursors-4u.net/others/oth-6/oth651.cur"), auto !important;
}
Background Stacking
You can stack multiple background elements by putting a comma after whatever you're trying to stack.
background: linear-gradient(to top, transparent, red), url("IMG_SRC")
Using a stylesheet
You can use this to call a stylesheet to use for the CSS of whatever page you want. [
link href="style.css" rel="stylesheet" type="text/css" media="all"
]
Fontawesome icons
You can put fontawesome's free icons by putting this in the head. Put the triangle brackets wherever the [] are. [ link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/fontawesome.min.css" ]
[ link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/brands.min.css" ]
[ link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/solid.min.css" ]
Sizing
I know / use rem = font-size of the root element % = parent element px = pixels is just pixels vw = 1% of the width of the viewport vh = 1% of the height of the viewport
IDK what any of this is vmin = 1% of viewport's* smaller dimension vmax = 1% of viewport's* larger dimension ex = x-height of the current font (rarely used)
ch = width of the "0" (zero) em = font-size of the element (2em means 2 times the size of the current font)
Pseudo Classes I know
:active = Selects active link :focus = Selects the element that gets focus :hover = Stuff u hover over :root = Selects the docs root element