Register a SA Forums Account here!
JOINING THE SA FORUMS WILL REMOVE THIS BIG AD, THE ANNOYING UNDERLINED ADS, AND STUPID INTERSTITIAL ADS!!!

You can: log in, read the tech support FAQ, or request your lost password. This dumb message (and those ads) will appear on every screen until you register! Get rid of this crap by registering your own SA Forums Account and joining roughly 150,000 Goons, for the one-time price of $9.95! We charge money because it costs us money per month for bills, and since we don't believe in showing ads to our users, we try to make the money back through forum registrations.
 
  • Post
  • Reply
rotor
Jun 11, 2001

classic case of pineapple derangement syndrome
yospos
Enterprise Posting Solutions

Adbot
ADBOT LOVES YOU

rotor
Jun 11, 2001

classic case of pineapple derangement syndrome

who's gonna tell him

rotor
Jun 11, 2001

classic case of pineapple derangement syndrome

for reals tho these are :chefkissyfingers:

rotor
Jun 11, 2001

classic case of pineapple derangement syndrome

AtomD posted:

tbh its super nice when this comes up every so often and people have nice things to say about it
i don't post in the pos all that much these days, though its where i'd post if i was a postin
rest assured i still work with compys and it still sucks poo poo


lol

hell yeah work sucks

rotor
Jun 11, 2001

classic case of pineapple derangement syndrome

dang

rotor
Jun 11, 2001

classic case of pineapple derangement syndrome
https://i.imgur.com/aIu4G0P.mp4

rotor
Jun 11, 2001

classic case of pineapple derangement syndrome

Bluemillion posted:

This is super cool, but I gotta ask: Do you still think of "The Matrix" as a movie that came out "Recently"? Like, within the last few years?

i was screwin around with some css animations tryna make it look like a nixie tube :-(

rotor
Jun 11, 2001

classic case of pineapple derangement syndrome

Bluemillion posted:

It looks good. I'm sorry I threw shade. The green was giving me matrix vibes. I gotta dial back my snark, I've been hurting feelings lately. Gotta check myself.

is ok, my feelings are not hurt. The color is the same as the text color here in yospos.

rotor
Jun 11, 2001

classic case of pineapple derangement syndrome

mediaphage posted:

i thought it was fine and good

though you should try adding a tube surround to it anyway

maybe i will! but tomorrow because its friday night and its 9pm and i've had a couple beers and that means one thing: time to post for a while and doze off in front of the tv

rotor
Jun 11, 2001

classic case of pineapple derangement syndrome
heres the codez if anyone wants to tinker

code:
<html>
    <head>
        <link rel="preconnect" href="https://fonts.gstatic.com">
        <link href="https://fonts.googleapis.com/css2?family=Nixie+One&display=swap" rel="stylesheet">

        <style>
            body{
                font-family: 'Nixie One', cursive;
                font-size: x-large;
                background-color: black;
            }

            span {

                /*stack em on top of each other*/
                position:absolute;
                top:100; left:100;

                opacity: 0.0;
                color: rgb(87, 255, 87);

                animation-name: fadeInOut;
                animation-duration: 0.2s;
                animation-iteration-count: 1;
            }

            @keyframes fadeInOut {
                0%   {opacity: 0; text-shadow: 0 0 0px rgb(87, 255, 87);}
                25%  {opacity: 0.5; text-shadow: 0 0 20px rgb(87, 255, 87);}
                50%  {opacity: 1; text-shadow: 0 0 40px rgb(87, 255, 87);}
                75%  {opacity: 0.5; text-shadow: 0 0 20px rgb(87, 255, 87);}
                100% {opacity: 0; text-shadow: 0 0 0px rgb(87, 255, 87);}
            }

            span.doIt{
                opacity: 1.0;
            }

            .a{
                animation-delay: 1s;
            }
            .b{
                animation-delay: 1.15s;
            }
            .c{
                animation-delay: 1.30s;
            }
            .d{
                animation-delay: 1.45s;
            }
            .e{
                animation-delay: 1.50s;
            }
            .f{
                animation-delay: 1.65s;
            }


        </style>

    </head>
    <body>
        <div class="box">
            <span class="a">Y</span>
            <span class="b">O</span>
            <span class="c">S</span>
            <span class="d">P</span>
            <span class="e">O</span>
            <span class="f">S</span>
        </div>
        
    </body>
</html>

rotor
Jun 11, 2001

classic case of pineapple derangement syndrome

President Beep posted:

rotor, do you ever watch fran lab on youtube? she’s all about old displays.

yeah, she's v good

rotor
Jun 11, 2001

classic case of pineapple derangement syndrome

carry on then posted:



there's a css animation too but it's just a fade/scale

i like it

Adbot
ADBOT LOVES YOU

rotor
Jun 11, 2001

classic case of pineapple derangement syndrome

  • 1
  • 2
  • 3
  • 4
  • 5
  • Post
  • Reply