arlo atomickk's profile picture

Published by

published
updated

Privacy: Link-only
Category: Web, HTML, Tech

Floating images

<style>

@keyframes float {

    0%   { transform: translate(0, 0px); }

    50%  { transform: translate(0, -20px); }

    100% { transform: translate(0, 0px); }

}


#float { animation: 3s linear 0s infinite float }

</style>


<img src="INSERT URL" id="float"/>

/*ANYTHING WITH THE INSERTED ID OF "FLOAT" WILL NOW FLOAT*/


Comments

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