(Unpaid) Simple Animated Logo

Status
This thread has been locked.

AB987

fas
Deactivated
Feedback score
1
Posts
322
Reactions
49
Resources
0
Hello,
I am looking for someone to make me a (currently unpaid, I will vouch if you want and I may pay later but for now it is unpaid) a simple animated logo in the form of a GIF for my server store. My server name is AppolixMC so something to do like that? I would like it to be somewhat similar to the logo on the InvadedLands store (https://store.invadedlands.net), in the sense that there is the logo, in the center, almost like convulsing, going back and forth, if that makes any sense.
HMU on disc if you are willing to do this @ AB987#5221
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

adamawesome135

Check out Levely.me
Supreme
Feedback score
38
Posts
1,397
Reactions
555
Resources
4
Hello,
I am looking for someone to make me a (currently unpaid, I will vouch if you want and I may pay later but for now it is unpaid) a simple animated logo in the form of a GIF for my server store. My server name is AppolixMC so something to do like that? I would like it to be somewhat similar to the logo on the InvadedLands store (https://store.invadedlands.net), in the sense that there is the logo, in the center, almost like convulsing, going back and forth, if that makes any sense.
HMU on disc if you are willing to do this @ AB987#5221
You use CSS for that btw
 

Shaun

Web Developer, owner of Syncore LLC
Supreme
Feedback score
20
Posts
622
Reactions
408
Resources
0
Code:
.animateLogo {
    animation: pulse .5s linear infinite;
}

@keyframes pulse{

    from{
        transform: scale(1);
    }

    to {
       transform: scale(1.5);
    }
  }
 

AB987

fas
Deactivated
Feedback score
1
Posts
322
Reactions
49
Resources
0
Code:
.animateLogo {
    animation: pulse .5s linear infinite;
}

@keyframes pulse{

    from{
        transform: scale(1);
    }

    to {
       transform: scale(1.5);
    }
  }
Ok thanks for this, but where would I put said code? And how would I add the logo I want to this?
 

Kreativ Digital

Website Developer
Premium
Feedback score
37
Posts
320
Reactions
137
Resources
0
Ok thanks for this, but where would I put said code? And how would I add the logo I want to this?
This is why jobs like these are often paid. Nevertheless, you'll want to put the code that Shaun gave you into a <style></style> tag inside your layout.html on buycraft or on your style.css file. You'll also need to add that class to the <img/> tag in your HTML.
 

AB987

fas
Deactivated
Feedback score
1
Posts
322
Reactions
49
Resources
0
This is why jobs like these are often paid. Nevertheless, you'll want to put the code that Shaun gave you into a <style></style> tag inside your layout.html on buycraft or on your style.css file. You'll also need to add that class to the <img/> tag in your HTML.
I haven't actually bought the Premium Plan yet, I am going to soon. I just want the logo now and I can't do it yet because I don't have the plan.
 
Status
This thread has been locked.
Top