CRYLIOX's profile picture

Published by

published

Category: Web, HTML, Tech

animating logo etc...

Hey so I've been tryign to figure out how tf do you create those really cool animated spacehey and.... I really want some cool effects!! pls show me!


0 Kudos

Comments

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

5ativa vampir3

5ativa vampir3's profile picture

@keyframes floating {
0% { transform: translate(0, 0px); }
50% { transform: translate(0, 5px); }
100% { transform: translate(0, -0px); } }

.logo {
animation-name: floating; animation-duration: 3s; animation-iteration-count: infinite; animation-timing-function: ease-in-out; }

i’m stuck on mobile at the moment so unfortunately i cannot double check this code to make sure that it works but i’m pretty sure this will make the spacehey logo float up and down no promises but throw it between a set of style tags if you wanna give it a try lol


Report Comment