« Web, HTML, Tech Forum

I made a simple animated turntable for your profile!

Posted by Kap 💪

posted
updated

Forum: Web, HTML, Tech

They look like this:


Here is the source code:

  <style>
        /*Made by Kapsyloffer 2024-07-18*/
        @keyframes spin {
            from {transform: rotate(0deg);}
            to {transform: rotate(360deg);}
        }

        @keyframes arm-motion {
            from {transform: rotate(-35deg);}
            to {transform: rotate(0deg);}
        }

        .turntable {
            background-image: url("https://filebeam.se/d/vinylbg.png");
            width: 200px;
            height: 175px;
            padding: 10px;
            margin: 5px;
            border-radius: 5px;
            box-sizing: unset;
        }
        .disc {
            display: unset !important;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            animation: spin 5s linear infinite;
            animation-delay: 3s;
            outline: 3px solid #FFF;
            box-sizing: unset;

        }
        .arm {
            position: relative;
            top: -60px;
            left: -27px;
            height: 170px;
            width: auto;
            animation: arm-motion 3s linear;
            box-sizing: unset;

        }

  </style>
 <div class="turntable">
    <img src="https://external-media.spacehey.net/media/sjGyPoVyExpAzXW3y9Hu5zZ5nOCVyftznw9ptU2crxMg=/https://filebeam.se/d/silver_bullet.jpg" class="disc">
    <img src="https://filebeam.se/d/turntable_arm.png" class="arm">
  </div>


I hope you guys like it! :D


Report Topic

3 Replies

Sort Replies:

Reply by Kap 💪

posted


How do I post code properly?


Permalink Report Reply

Reply by Alpinkpaca

posted

OMG I LOVE IT!! USING IT XOXO <3333


Permalink Report Reply

Reply by Kap 💪

posted

You real as fuck for that Alpinkpaca


Permalink Report Reply